From 30625d20ec886a2aa19f103396794c1843c86202 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 16 May 2012 17:04:32 +0800 Subject: [PATCH] I18n.php --- I18n.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/I18n.php b/I18n.php index 55ece1ef..311ba978 100644 --- a/I18n.php +++ b/I18n.php @@ -136,7 +136,14 @@ class Pman_Core_I18n extends Pman case 'Timezone': $ar = DateTimeZone::listAbbreviations(); - echo '
';print_R($ar);exit;
+                $ret = array();
+                foreach($ar as $tl => $sar) {
+                    foreach($sar as $tz) {
+                        $ret[] = array('tz' => $tz['timezone_id']);
+                    }
+                }
+                $this->jdata($ret);
+                
                 
                 
              
-- 
2.39.2