1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-11 09:04:38 +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:
Cameron
2021-11-25 08:51:32 -08:00
parent 904cea1af4
commit 4aa66c1732
17 changed files with 77 additions and 75 deletions

View File

@@ -80,10 +80,10 @@ trait StrptimeTrait
for ($i = 1; $i <= 12; $i++)
{
$k = e_date::strftime('%B', mktime(0, 0, 0, $i));
$k = strftime('%B', mktime(0, 0, 0, $i));
$fullmonth[$k] = $i;
$j = e_date::strftime('%b', mktime(0, 0, 0, $i));
$j = strftime('%b', mktime(0, 0, 0, $i));
$abrevmonth[$j] = $i;
}