get_string() should read stuff from timezones.php

This commit is contained in:
defacer
2005-04-08 19:36:15 +00:00
parent 9a382a5c5e
commit 9fb7ea024d
+1 -1
View File
@@ -99,7 +99,7 @@
asort($presets); // Sort before adding trivial presets because string sorts mess up their order
for($i = -13; $i <= 13; $i += .5) {
$tzstring = get_string('unspecifiedlocation').' / GMT';
$tzstring = get_string('unspecifiedlocation', 'timezones').' / GMT';
if($i < 0) {
$presets["$i"] = $tzstring . $i;
}