[Phpfreechat-svn] SF.net SVN: phpfreechat: [487] trunk/src/phpfreechat.class.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-05-11 15:11:42
|
Revision: 487 Author: kerphi Date: 2006-05-11 08:11:34 -0700 (Thu, 11 May 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=487&view=rev Log Message: ----------- bug fix: do not open the pv tab when other user close the tab Modified Paths: -------------- trunk/src/phpfreechat.class.php Modified: trunk/src/phpfreechat.class.php =================================================================== --- trunk/src/phpfreechat.class.php 2006-05-05 15:46:21 UTC (rev 486) +++ trunk/src/phpfreechat.class.php 2006-05-11 15:11:34 UTC (rev 487) @@ -343,7 +343,8 @@ { $recipient = $u->privmsg[$recipientid]["recipient"]; - if ($rawcmd != "update") + if ($rawcmd != "update" && + $rawcmd != "leave") // do not open the pv tab when other user close the tab { // alert the other from the new pv // (warn other user that someone talk to him) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |