Use PHP 4-compatible callback HEAD
authorDirk Haun <dirk@haun-online.de>
Sun Sep 20 11:14:25 2009 +0200 (4 months ago)
branchHEAD
changeset 742901f95a3e4545
parent 7428df55886043f2
child 7430a053d9023368
Use PHP 4-compatible callback
system/classes/timezoneconfig.class.php
     1.1 --- a/system/classes/timezoneconfig.class.php	Sun Sep 20 11:00:03 2009 +0200
     1.2 +++ b/system/classes/timezoneconfig.class.php	Sun Sep 20 11:14:25 2009 +0200
     1.3 @@ -210,7 +210,7 @@
     1.4  
     1.5          }
     1.6  
     1.7 -        uasort($timezones, 'TimeZoneConfig::_sort_by_timezone');
     1.8 +        uasort($timezones, array('TimeZoneConfig', '_sort_by_timezone'));
     1.9  
    1.10          return $timezones;
    1.11      }