diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-07-09 00:25:10 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-07-09 00:25:10 +0000 |
commit | 27dc584ba910d6c16c22faa9c846f71b917741ce (patch) | |
tree | 3bd83e336543696a8bdc165cdd69eeaf490f7524 /modules | |
parent | 82c9fab7c780ff4d900d103fb21e96a4c138f730 (diff) | |
download | brdo-27dc584ba910d6c16c22faa9c846f71b917741ce.tar.gz brdo-27dc584ba910d6c16c22faa9c846f71b917741ce.tar.bz2 |
Fixed a bug caused by inverting the setting for configurable timezones.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system.module | 2 | ||||
-rw-r--r-- | modules/system/system.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/system.module b/modules/system.module index 41dcdcc26..9d8bec987 100644 --- a/modules/system.module +++ b/modules/system.module @@ -104,7 +104,7 @@ function system_user($type, $edit, &$user, $category = NULL) { $data[] = array('title' => t('Theme settings'), 'data' => form_item(t('Theme'), "<select name=\"edit[theme]\">$options</select>", t('Selecting a different theme will change the look and feel of the site.')), 'weight' => 2); } - if (!variable_get('configurable_timezones', 1)) { + if (variable_get('configurable_timezones', 1)) { $timestamp = time(); $zonelist = array(-11, -10, -9.5, -9, -8, -7, -6, -5, -4, -3.5, -3, -2, -1, 0, 1, 2, 3, 3.5, 4, 5, 5.5, 5.75, 6, 6.5, 7, 8, 9, 9.5, 10, 10.5, 11, 11.5, 12, 12.75, 13, 14); foreach ($zonelist as $offset) { diff --git a/modules/system/system.module b/modules/system/system.module index 41dcdcc26..9d8bec987 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -104,7 +104,7 @@ function system_user($type, $edit, &$user, $category = NULL) { $data[] = array('title' => t('Theme settings'), 'data' => form_item(t('Theme'), "<select name=\"edit[theme]\">$options</select>", t('Selecting a different theme will change the look and feel of the site.')), 'weight' => 2); } - if (!variable_get('configurable_timezones', 1)) { + if (variable_get('configurable_timezones', 1)) { $timestamp = time(); $zonelist = array(-11, -10, -9.5, -9, -8, -7, -6, -5, -4, -3.5, -3, -2, -1, 0, 1, 2, 3, 3.5, 4, 5, 5.5, 5.75, 6, 6.5, 7, 8, 9, 9.5, 10, 10.5, 11, 11.5, 12, 12.75, 13, 14); foreach ($zonelist as $offset) { |