Add Swiss timezone (Europe/Zurich) to timezone selectors

The timezone lists are hardcoded. Add "Europe (Switzerland)" =
Europe/Zurich to:
- Admin/Templates/editServerSet.tpl (admin: edit server settings)
- install/templates/config.tpl (install wizard, index 14)
- install/index.php (install wizard tz index->name mapping, case 14)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
TravianZ Patcher
2026-06-03 11:16:19 +02:00
parent 46d63e737c
commit 2f2f0f5a47
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -22,6 +22,7 @@ $tz=(isset($_GET['t']))? (int)$_GET['t'] : 8;
case 11: $t_zone="Indian/Maldives";break;
case 12: $t_zone="Pacific/Fiji";break;
case 13: $t_zone="America/Sao_Paulo";break;
case 14: $t_zone="Europe/Zurich";break;
default: $t_zone="America/Sao_Paulo";break;
}
date_default_timezone_set($t_zone);