mirror of
https://github.com/e107inc/e107.git
synced 2025-08-22 22:25:31 +02:00
strftime() added to php_compatibility_handler.php and all references updated. README updated. dateAlternativeTest updated to pass on Windows. (TBD)
This commit is contained in:
@@ -727,14 +727,14 @@ class listclass
|
||||
if($thisday == $current_day)
|
||||
{
|
||||
$datepreftoday = $this->list_pref[$this->mode."_datestyletoday"];
|
||||
return e_date::strftime($datepreftoday, $datestamp);
|
||||
return strftime($datepreftoday, $datestamp);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//else use default date style
|
||||
$datepref = $this->list_pref[$this->mode."_datestyle"];
|
||||
return e_date::strftime($datepref, $datestamp);
|
||||
return strftime($datepref, $datestamp);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user