[Phpfreechat-svn] SF.net SVN: phpfreechat: [643] trunk/themes/default/templates/pfcclient.js.tpl.ph
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-07-05 16:06:25
|
Revision: 643 Author: kerphi Date: 2006-07-05 09:06:18 -0700 (Wed, 05 Jul 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=643&view=rev Log Message: ----------- Bug fix: "connect_at_startup" and "start_minimized" options were broken Modified Paths: -------------- trunk/themes/default/templates/pfcclient.js.tpl.php Modified: trunk/themes/default/templates/pfcclient.js.tpl.php =================================================================== --- trunk/themes/default/templates/pfcclient.js.tpl.php 2006-07-04 15:54:40 UTC (rev 642) +++ trunk/themes/default/templates/pfcclient.js.tpl.php 2006-07-05 16:06:18 UTC (rev 643) @@ -48,7 +48,7 @@ var cookie = getCookie('<?php echo $prefix; ?>minmax_status'); if (cookie != null) this.minmax_status = (cookie == 'true'); - + cookie = getCookie('<?php echo $prefix; ?>nickmarker'); this.nickmarker = (cookie == 'true'); if (cookie == '' || cookie == null) @@ -131,6 +131,10 @@ ?> } this.smileys = $H(smileys); + + // refresh the gui + this.refresh_loginlogout(); + this.refresh_minimize_maximize(); }, /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |