From aa308028aa570d15d3abf9c7679d7de16019b78b Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 18 Jun 2007 16:09:39 +0000 Subject: - Patch #131026 by James et al: OpenID client support for Drupal! Let this be the day where we help revolutionize the online society, and the way websites and web services interoperate. Or something. --- modules/locale/locale.module | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/locale') diff --git a/modules/locale/locale.module b/modules/locale/locale.module index 86831fa6c..e296f68e8 100644 --- a/modules/locale/locale.module +++ b/modules/locale/locale.module @@ -285,7 +285,7 @@ function locale_theme() { * * @param $string * A string to look up translation for. If omitted, all the - * cached strings will be returned in all languages already + * cached strings will be returned in all languages already * used on the page. * @param $langcode * Language code to use for the lookup. @@ -304,9 +304,9 @@ function locale($string = NULL, $langcode = NULL) { // Store database cached translations in a static var. if (!isset($locale_t[$langcode])) { $locale_t[$langcode] = array(); - // Disabling the usage of string caching allows a module to watch for - // the exact list of strings used on a page. From a performance - // perspective that is a really bad idea, so we have no user + // Disabling the usage of string caching allows a module to watch for + // the exact list of strings used on a page. From a performance + // perspective that is a really bad idea, so we have no user // interface for this. Be careful when turning this option off! if (variable_get('locale_cache_strings', 1) == 1) { if (!($cache = cache_get('locale:'. $langcode, 'cache'))) { -- cgit v1.2.3