[Phpfreechat-svn] SF.net SVN: phpfreechat: [695] trunk/src
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-08-22 14:34:40
|
Revision: 695 Author: kerphi Date: 2006-08-22 07:34:33 -0700 (Tue, 22 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=695&view=rev Log Message: ----------- fix miniblune theme (width parameter) Modified Paths: -------------- trunk/demo/demo44_green_theme.php trunk/src/phpfreechat.class.php Modified: trunk/demo/demo44_green_theme.php =================================================================== --- trunk/demo/demo44_green_theme.php 2006-08-22 14:29:51 UTC (rev 694) +++ trunk/demo/demo44_green_theme.php 2006-08-22 14:34:33 UTC (rev 695) @@ -12,7 +12,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> - <title>Blune PHPFreeChat</title> + <title> PHPFreeChat - Green theme</title> <?php $chat->printJavascript(); ?> <?php $chat->printStyle(); ?> </head> Modified: trunk/src/phpfreechat.class.php =================================================================== --- trunk/src/phpfreechat.class.php 2006-08-22 14:29:51 UTC (rev 694) +++ trunk/src/phpfreechat.class.php 2006-08-22 14:34:33 UTC (rev 695) @@ -170,7 +170,7 @@ $u =& pfcUserConfig::Instance(); - $output = "<div id=\"pfc_container\">"; + $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. |