Special characters in the days of week
Posted: Sat Sep 08, 2007 4:24 pm
I found a thin problem in the days of week.
In my language (italian) many days finish with an accented "i" (ì) and in Serendipity 1.2 those letters get substituted with "?".
To fix the problem I modified the file include/functions.inc.php , row 206:
in:
Now works well. For safety, I tested with Firefox 2.0.0.6 (Linux), Opera 9.20 (Linux), IE 6.0 (Windows), IE 7.0 (Windows).
Ask for a maintainer to consider the modification. Need no citations.
Fabio.
In my language (italian) many days finish with an accented "i" (ì) and in Serendipity 1.2 those letters get substituted with "?".
To fix the problem I modified the file include/functions.inc.php , row 206:
Code: Select all
return main_mb('ucfirst', main_strftime($cache[$format], (int)$time, $useOffset, $useDate));Code: Select all
return htmlentities(main_mb('ucfirst', main_strftime($cache[$format], (int)$time, $useOffset, $useDate)));Ask for a maintainer to consider the modification. Need no citations.
Fabio.