2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Remove restriction on timezones

This commit is contained in:
Adam Zammit
2015-08-03 12:56:47 +10:00
parent 1a68f4e012
commit 65695247d2

View File

@@ -95,8 +95,7 @@ $dtz = get_setting("DEFAULT_TIME_ZONE");
$sql = "SELECT name as value, name as description,
CASE WHEN name LIKE '$dtz' THEN 'selected=\'selected\'' ELSE '' END AS selected
FROM mysql.time_zone_name
WHERE `Name` LIKE 'Europe%' OR `Name` LIKE 'Asia%' ";
FROM mysql.time_zone_name";
$tzl = $db->GetAll($sql);