[Phpfreechat-svn] SF.net SVN: phpfreechat: [660] trunk/index.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-08-01 18:01:26
|
Revision: 660 Author: kerphi Date: 2006-08-01 11:01:18 -0700 (Tue, 01 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=660&view=rev Log Message: ----------- In the default chat index, everybody is admin in order to test easialy every chat features Modified Paths: -------------- trunk/index.php Modified: trunk/index.php =================================================================== --- trunk/index.php 2006-07-24 12:13:51 UTC (rev 659) +++ trunk/index.php 2006-08-01 18:01:18 UTC (rev 660) @@ -3,6 +3,7 @@ require_once dirname(__FILE__)."/src/phpfreechat.class.php"; $params = array(); $params["nick"] = "guest".rand(1,10); // setup the intitial nickname +$params["isadmin"] = true; // just for debug ;) $params["serverid"] = md5(__FILE__); // calculate a unique id for this chat $chat = new phpFreeChat( $params ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |