Lines Matching +full:run +full:- +full:script
20 * Boston, MA 02110-1301 USA
33 function run(&$xml_reponse, $p) function in pfcProxyCommand_checknickchange
46 $oldnick = $ct->getNickname($u->nickid);
48 if ( $this->name == 'nick' )
53 if ( $this->name == 'nick' &&
56 $c->frozen_nick == true &&
57 $owner != $this->proxyname )
60 …$xml_reponse->script("pfc.handleResponse('".$this->proxyname."', 'nick', '".addslashes($msg)."');"…
64 $newnickid = $ct->getNickId($newnick);
65 $oldnickid = $u->nickid;
70 …$xml_reponse->script("pfc.handleResponse('".$this->name."', 'notchanged', '".addslashes($newnick).…
76 $nick_in_use = $this->_checkNickIsUsed($newnick, $oldnickid);
79 if ($c->frozen_nick)
80 … $xml_reponse->script("pfc.handleResponse('nick', 'notallowed', '".addslashes($newnick)."');");
82 $xml_reponse->script("pfc.handleResponse('nick', 'isused', '".addslashes($newnick)."');");
88 …if ($this->name != 'connect' && // don't check anything on the connect process or it could block t…
89 $c->frozen_nick == true &&
90 $oldnick != $c->nick &&
91 … $c->nick != '' && // don't change the nickname to empty or the asknick popup will loop indefinatly
92 $owner != $this->proxyname)
96 $cmdp["param"] = $c->nick;
97 $cmdp["owner"] = $this->proxyname;
99 return $cmd->run($xml_reponse, $cmdp);
103 return $this->next->run($xml_reponse, $p);
111 $online_users = $ct->getOnlineNick(NULL);
115 if (preg_match("/^".preg_quote($ct->getNickname($nid))."$/i",$newnick))