diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 023e9e97a9f8cdae7b33d6e01497b8a45b868de8..dc9cbfc0b18e4eebd370920252976c650ab5f60e 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -1057,7 +1057,7 @@ function language_list($field = 'language', $reset = FALSE) { // Init language list if (!isset($languages)) { - if (module_exists('locale')) { + if (variable_get('language_count', 1) > 1 || module_exists('locale')) { $result = db_query('SELECT * FROM {languages} ORDER BY weight ASC, name ASC'); while ($row = db_fetch_object($result)) { $languages['language'][$row->language] = $row;