UTF8 encode on Removal date for French chars on Months

This commit is contained in:
Bob Le Bricodeur 2014-11-15 00:50:27 +01:00
parent 0239dd0735
commit 5d981cb717
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ if (Utils::issetAndNoEmpty('titre', $_SESSION) === false || Utils::issetAndNoEmp
// Expiration date is initialised with config parameter. Value will be modified in step 4 if user has defined an other date
$_SESSION["champdatefin"]= time()+ (86400 * $config['default_poll_duration']); //60 sec * 60 min * 24 hours * config
$removal_date= strftime($date_format['txt_full'], ($_SESSION["champdatefin"]));//textual date
$removal_date= utf8_encode(strftime($date_format['txt_full'], ($_SESSION["champdatefin"])));//textual date
// Summary
$summary = '<ol>';