From 0d660939463a0015f2df1b871274f22480668b41 Mon Sep 17 00:00:00 2001 From: Leblanc Simon Date: Mon, 10 Aug 2009 21:04:23 +0000 Subject: [PATCH] =?UTF-8?q?correction=20du=20probl=C3=A8me=20d'encodage=20?= =?UTF-8?q?signal=C3=A9=20sur=20le=20forum=20:=20http://www.nojhan.net/gee?= =?UTF-8?q?kscottes/forum/viewtopic.php=3Fid=3D214?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- strip_manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strip_manager.php b/strip_manager.php index 05e7296..053c7d6 100644 --- a/strip_manager.php +++ b/strip_manager.php @@ -581,7 +581,7 @@ class strip_manager if (!$fh) { $this->general->wotd = $this->lang->forum_error; } else { - $this->general->wotd = stream_get_contents($fh); + $this->general->wotd = utf8_encode(stream_get_contents($fh)); fclose($fh); } }