[Phpfreechat-svn] SF.net SVN: phpfreechat: [736] trunk
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-09-06 06:53:13
|
Revision: 736 http://svn.sourceforge.net/phpfreechat/?rev=736&view=rev Author: kerphi Date: 2006-09-05 23:53:04 -0700 (Tue, 05 Sep 2006) Log Message: ----------- [en] Bug fix: the width parameters was broken [fr] Bug fix : the param?\195?\168tre width ne fonctionnait pas Modified Paths: -------------- trunk/demo/demo2_simple_with_params.php trunk/src/phpfreechat.class.php Modified: trunk/demo/demo2_simple_with_params.php =================================================================== --- trunk/demo/demo2_simple_with_params.php 2006-09-05 19:24:47 UTC (rev 735) +++ trunk/demo/demo2_simple_with_params.php 2006-09-06 06:53:04 UTC (rev 736) @@ -38,9 +38,7 @@ <body> - <div style="width: 800px;"> - <?php $chat->printChat(); ?> - </div> + <?php $chat->printChat(); ?> <?php // print the current file Modified: trunk/src/phpfreechat.class.php =================================================================== --- trunk/src/phpfreechat.class.php 2006-09-05 19:24:47 UTC (rev 735) +++ trunk/src/phpfreechat.class.php 2006-09-06 06:53:04 UTC (rev 736) @@ -178,7 +178,7 @@ $u =& pfcUserConfig::Instance(); - $output = "<div id=\"pfc_container\"".($c->width != "" ? "style=\"width:".$c->width."\"": "").">"; + $output = "<div id=\"pfc_container\"".($c->width != "" ? " style=\"width:".$c->width."\"": "").">"; // Please do not remove these lines, // or keep a backling to http://www.phpfreechat on your partner page This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |