When a user changes his/her timezone (in Your Panel > Edit Options) to a half-hour timezone (e.g. GMT -3:30) it is not correctly saved to the database.
The cause is in sources/panel_options.php, line 58:
$_POST['timezone'] = ( valid_int($_POST['timezone']) ...
If we change it to:
$_POST['timezone'] = ( $_POST['timezone'] ...
Then half-hour timezones are correctly saved.
« Last edit by Dietrich on Mon Mar 19, 2007 7:14 pm. »


