From 5d981cb717777c547abfe86aa6301cb745a75433 Mon Sep 17 00:00:00 2001 From: Bob Le Bricodeur Date: Sat, 15 Nov 2014 00:50:27 +0100 Subject: [PATCH] UTF8 encode on Removal date for French chars on Months --- choix_autre.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/choix_autre.php b/choix_autre.php index 978ba66..fd69bd5 100644 --- a/choix_autre.php +++ b/choix_autre.php @@ -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 = '
    ';