[Phpfreechat-svn] SF.net SVN: phpfreechat: [774] trunk/src/commands/identify.class.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-09-20 09:49:23
|
Revision: 774 http://svn.sourceforge.net/phpfreechat/?rev=774&view=rev Author: kerphi Date: 2006-09-20 02:49:20 -0700 (Wed, 20 Sep 2006) Log Message: ----------- fix a syntax error Modified Paths: -------------- trunk/src/commands/identify.class.php Modified: trunk/src/commands/identify.class.php =================================================================== --- trunk/src/commands/identify.class.php 2006-09-20 09:38:14 UTC (rev 773) +++ trunk/src/commands/identify.class.php 2006-09-20 09:49:20 UTC (rev 774) @@ -58,7 +58,7 @@ { // ok the current user is an admin, just save the isadmin flag in the metadata $container =& $c->getContainerInstance(); - $container->setUserMeta($u->nickid, 'isadmin' $isadmin); + $container->setUserMeta($u->nickid, 'isadmin', $isadmin); $msg .= _pfc("Succesfully identified"); $xml_reponse->addScript("pfc.handleResponse('".$this->name."', 'ok', '".$msg."');"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |