From f3b78fbfe641c8a48c149c395a7204b25f94277f Mon Sep 17 00:00:00 2001 From: Dries <dries@buytaert.net> Date: Fri, 10 Jan 2014 13:41:04 -0500 Subject: [PATCH] Issue #2171015 by webchick: fixed some language/documentation issues. --- core/includes/bootstrap.inc | 4 ++-- .../Drupal/language/Tests/LanguageListModuleInstallTest.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc index 0f385d609b16..51f4446868e5 100644 --- a/core/includes/bootstrap.inc +++ b/core/includes/bootstrap.inc @@ -2429,8 +2429,8 @@ function language_list($flags = Language::STATE_CONFIGURABLE) { } Language::sort($languages); } - // If the language module is enable but the configuration has not been - // written yet the returning an empty language list will cause errors. For + // If the language module is enabled but the configuration has not been + // written yet, returning an empty language list will cause errors. For // example the cache clear in search_module_preinstall(). if (empty($languages)) { // No language module, so use the default language only. diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageListModuleInstallTest.php b/core/modules/language/lib/Drupal/language/Tests/LanguageListModuleInstallTest.php index 89e5c07df70a..d4192b6221fa 100644 --- a/core/modules/language/lib/Drupal/language/Tests/LanguageListModuleInstallTest.php +++ b/core/modules/language/lib/Drupal/language/Tests/LanguageListModuleInstallTest.php @@ -33,8 +33,8 @@ public static function getInfo() { * Tests enabling Language. */ function testModuleInstallLanguageList() { - // Since language_list uses static caches we need to do this be enabling - // the module using a the UI. + // Since language_list uses static caches we need to do this by enabling + // the module using the UI. $admin_user = $this->drupalCreateUser(array('access administration pages', 'administer modules')); $this->drupalLogin($admin_user); $edit = array(); -- GitLab