From 9fb7ea024ded52ecf52d7de25b0228aaa4bbd372 Mon Sep 17 00:00:00 2001 From: defacer Date: Fri, 8 Apr 2005 19:36:15 +0000 Subject: [PATCH] get_string() should read stuff from timezones.php --- admin/calendar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/calendar.php b/admin/calendar.php index 347667a6652..58db8a373f1 100644 --- a/admin/calendar.php +++ b/admin/calendar.php @@ -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; }