Add the Europe/London option for time zone when installing - Fixes #8

This commit is contained in:
KFCSpike
2013-12-08 13:29:52 +00:00
parent 1cdbc41198
commit c1b6d5fd54
2 changed files with 7 additions and 5 deletions
+3 -2
View File
@@ -13,8 +13,9 @@ $tz=(isset($_GET['t']))? $_GET['t']:1;
case 6: $t_zone="Atlantic/Azores";break;
case 7: $t_zone="Australia/Melbourne";break;
case 8: $t_zone="Europe/Bucharest";break;
case 9: $t_zone="Indian/Maldives";break;
case 10: $t_zone="Pacific/Fiji";break;
case 9: $t_zone="Europe/London";break;
case 10: $t_zone="Indian/Maldives";break;
case 11: $t_zone="Pacific/Fiji";break;
}
date_default_timezone_set($t_zone);
?>