1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 21:57:51 +02:00

Encoding fix

Fixes problems with accented weekdays in Spanish other languages
This commit is contained in:
durandalwoz
2016-06-28 03:24:18 -03:00
parent b82cfaea92
commit f15078d321

View File

@@ -197,7 +197,7 @@ class convert
break; break;
} }
return strftime($mask, $datestamp); return utf8_encode(strftime($mask, $datestamp));
} }