diff --git a/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareMinimalUpgradePathTest.php b/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareMinimalUpgradePathTest.php index 5956394..c4a6abe 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareMinimalUpgradePathTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareMinimalUpgradePathTest.php @@ -78,7 +78,7 @@ class BareMinimalUpgradePathTest extends UpgradePathTestBase { $this->assertText(t('Configuration')); $this->assertText(t('Reports')); $this->assertText(t('Structure')); - $this->assertText(t('Modules')); + $this->assertText(t('Extend')); // Confirm that no {menu_links} entry exists for user/autocomplete. $result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField(); diff --git a/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareStandardUpgradePathTest.php b/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareStandardUpgradePathTest.php index 1ac554c..467e58a 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareStandardUpgradePathTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareStandardUpgradePathTest.php @@ -79,7 +79,7 @@ class BareStandardUpgradePathTest extends UpgradePathTestBase { $this->assertText(t('Configuration')); $this->assertText(t('Reports')); $this->assertText(t('Structure')); - $this->assertText(t('Modules')); + $this->assertText(t('Extend')); // Confirm that no {menu_links} entry exists for user/autocomplete. $result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField(); diff --git a/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledMinimalUpgradePathTest.php b/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledMinimalUpgradePathTest.php index bd74caa..81e3b6b 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledMinimalUpgradePathTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledMinimalUpgradePathTest.php @@ -78,7 +78,7 @@ class FilledMinimalUpgradePathTest extends UpgradePathTestBase { $this->assertText(t('Configuration')); $this->assertText(t('Reports')); $this->assertText(t('Structure')); - $this->assertText(t('Modules')); + $this->assertText(t('Extend')); // Confirm that no {menu_links} entry exists for user/autocomplete. $result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField(); diff --git a/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledStandardUpgradePathTest.php b/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledStandardUpgradePathTest.php index 0242830..940c4bd 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledStandardUpgradePathTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledStandardUpgradePathTest.php @@ -79,7 +79,7 @@ class FilledStandardUpgradePathTest extends UpgradePathTestBase { $this->assertText(t('Configuration')); $this->assertText(t('Reports')); $this->assertText(t('Structure')); - $this->assertText(t('Modules')); + $this->assertText(t('Extend')); // Confirm that no {menu_links} entry exists for user/autocomplete. $result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField(); diff --git a/core/modules/system/system.module b/core/modules/system/system.module index 922b8a7..64ce194 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -718,8 +718,8 @@ function system_menu() { // Modules. $items['admin/modules'] = array( - 'title' => 'Modules', - 'description' => 'Extend site functionality.', + 'title' => 'Extend', + 'description' => 'Add and enable modules to extend site functionality.', 'page callback' => 'drupal_get_form', 'page arguments' => array('system_modules'), 'access arguments' => array('administer modules'),