remove debug
[Pman.Core] / TimeZone.php
index 9c7b282..1d8629d 100644 (file)
@@ -69,8 +69,7 @@ class Pman_Core_TimeZone extends Pman
         if(!empty(self::$timezones)) {
             return self::$timezones;
         }
-
-        $ce = DB_DataObject::factory('core_enum');
+         $ce = DB_DataObject::factory('core_enum');
         $ce->query("
             SELECT
                 *, TIME_FORMAT(TIMEDIFF(NOW(), CONVERT_TZ(NOW(), Name, 'UTC')), '%H:%i') as timeOffset
@@ -81,6 +80,10 @@ class Pman_Core_TimeZone extends Pman
                 AND
                 Name NOT LIKE '%/%/%'
                 AND
+                Name NOT LIKE 'right%'
+                AND
+                Name NOT LIKE 'posix%'
+                AND
                 Name NOT LIKE 'Etc%'
             ORDER BY
                 timeoffset DESC,