correction du problème d'encodage signalé sur le forum : http://www.nojhan.net/geekscottes/forum/viewtopic.php?id=214

This commit is contained in:
Leblanc Simon 2009-08-10 21:04:23 +00:00
commit 0d66093946

View file

@ -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);
}
}