[Phpfreechat-svn] SF.net SVN: phpfreechat: [830] trunk/src/commands
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-10-16 15:18:23
|
Revision: 830 http://svn.sourceforge.net/phpfreechat/?rev=830&view=rev Author: kerphi Date: 2006-10-16 08:17:57 -0700 (Mon, 16 Oct 2006) Log Message: ----------- add commented traces Modified Paths: -------------- trunk/src/commands/privmsg.class.php trunk/src/commands/send.class.php trunk/src/commands/who2.class.php Modified: trunk/src/commands/privmsg.class.php =================================================================== --- trunk/src/commands/privmsg.class.php 2006-10-16 15:17:20 UTC (rev 829) +++ trunk/src/commands/privmsg.class.php 2006-10-16 15:17:57 UTC (rev 830) @@ -29,6 +29,8 @@ return; } + //$this->trace($xml_reponse, $this->name, $sender); + // error: can't speak to unknown if ($pvnickid == '') { Modified: trunk/src/commands/send.class.php =================================================================== --- trunk/src/commands/send.class.php 2006-10-16 15:17:20 UTC (rev 829) +++ trunk/src/commands/send.class.php 2006-10-16 15:17:57 UTC (rev 830) @@ -27,9 +27,9 @@ $cmd->run($xml_reponse, $cmdp); return; } - - // $offline = $container->getMeta("offline", "nickname", $u->privmsg[$recipientid]["name"]); + + // $offline = $container->getMeta("offline", "nickname", $u->privmsg[$recipientid]["name"]); // if this channel is a pv (one to one channel), // first of all, check if the other user is connected Modified: trunk/src/commands/who2.class.php =================================================================== --- trunk/src/commands/who2.class.php 2006-10-16 15:17:20 UTC (rev 829) +++ trunk/src/commands/who2.class.php 2006-10-16 15:17:57 UTC (rev 830) @@ -45,6 +45,9 @@ $chanmeta = $this->_getChanMeta($recipient, $recipientid); + //if (preg_match("/^pv_/", $recipient)) + //$this->trace($xml_reponse, 'who2', $recipient); + // check if info didn't change since last call $sid = "pfc_who2_".$c->getId()."_".$clientid."_".$recipientid; if (isset($_SESSION[$sid]) && $chanmeta == $_SESSION[$sid]) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |