Modified: trunk/htdocs/system/handlers/adminlogshandler.php (5124 => 5125)
--- trunk/htdocs/system/handlers/adminlogshandler.php 2011-05-14 11:07:29 UTC (rev 5124)
+++ trunk/htdocs/system/handlers/adminlogshandler.php 2011-05-14 20:28:52 UTC (rev 5125)
@@ -56,7 +56,7 @@
$date = Controller::get_var( 'date', 'any' );
if ( $date != 'any' ) {
- $d = DateTime::createFromFormat( '!Y-m', $date ); // ! means fill any non-specified pieces with default Unix Epoch ones
+ $d = HabariDateTime::date_create( $date ); // ! means fill any non-specified pieces with default Unix Epoch ones
$arguments['year'] = $d->format( 'Y' );
$arguments['month'] = $d->format( 'm' );
}