fix date format modifier

master
Tanguy Pruvot 2010-10-29 08:45:35 +02:00
rodzic 43661c4d85
commit 9c3d8d9fec
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -71,7 +71,7 @@ class SG_iCal_VTimeZone {
//PHP >= 5.2
$tz = new DateTimeZone( $this->tzid );
$date = new DateTime("@$ts", $tz);
return ($date->format('%I') == 1) ? 'daylight' : 'standard';
return ($date->format('I') == 1) ? 'daylight' : 'standard';
} else {