From 64b12b4a5651fdd88c651ccc88c3ca1682073022 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Thu, 8 Jul 2004 07:56:16 +0000 Subject: [PATCH] - Fixed braino. Reported by Steven. --- modules/system.module | 2 +- modules/system/system.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/system.module b/modules/system.module index 5e8ff7e017e0..4fcc4045524c 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', 0)) { + 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 5e8ff7e017e0..4fcc4045524c 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', 0)) { + 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) { -- GitLab