aoe:calendars
phpScheduleIt
User Time Zone config problem.
To remove Timezone option:
Replace lines 159-169 in templates/auth.template.php from:
<select name="timezone" id="timezone" class="textbox">
<?php
for ($i = 0; $i < count($timezones); $i++) {
$label = $timezones[$i];
if ($timezones[$i] >= 0) { $label = '+' . $label; }
echo "<option value=\"{$timezones[$i]}\""
. ( (isset($data['timezone']) && ($data['timezone'] == $timezones[$i])) ? ' selected="selected"' : '' )
. ">GMT $label</option>\n";
}
?>
</select>
to:
<input type="hidden" name="timezone" value="0"/>0
To reset everyone's Timezone to 0, use these root mysql commands:
use phpScheduleIt; update login set timezone='0';
aoe/calendars.txt · Last modified: 1970/01/18 07:09 by 127.0.0.1