diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/bootstrap.inc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 7fe10da96..ad0441d0c 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -2091,11 +2091,7 @@ function drupal_language_types() { * Return true if there is more than one language enabled. */ function drupal_multilingual() { - static $multilingual; - if (!isset($multilingual)) { - $multilingual = variable_get('language_count', 1) > 1; - } - return $multilingual; + return variable_get('language_count', 1) > 1; } /** |