[Phpfreechat-svn] SF.net SVN: phpfreechat: [951] trunk/src/phpfreechat.class.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2007-02-14 16:55:54
|
Revision: 951 http://svn.sourceforge.net/phpfreechat/?rev=951&view=rev Author: kerphi Date: 2007-02-14 08:55:52 -0800 (Wed, 14 Feb 2007) Log Message: ----------- Bug fix: encoding problem http://www.phpfreechat.net/forum/viewtopic.php?id=1184 Modified Paths: -------------- trunk/src/phpfreechat.class.php Modified: trunk/src/phpfreechat.class.php =================================================================== --- trunk/src/phpfreechat.class.php 2007-02-14 16:54:55 UTC (rev 950) +++ trunk/src/phpfreechat.class.php 2007-02-14 16:55:52 UTC (rev 951) @@ -542,7 +542,7 @@ $html = ''; - pfcI18N::SwitchOutputEncoding($c->output_encoding); + // pfcI18N::SwitchOutputEncoding($c->output_encoding); $path = $c->getFilePathFromTheme('chat.html.tpl.php'); $t = new pfcTemplate($path); @@ -550,7 +550,7 @@ $t->assignObject($c,"c"); $html .= $t->getOutput(); - pfcI18N::SwitchOutputEncoding(); + // pfcI18N::SwitchOutputEncoding(); $xml_reponse->remove("pfc_loader"); // to hide the loading box $xml_reponse->assign("pfc_container", "innerHTML", $html); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |