summaryrefslogtreecommitdiff
path: root/plugins/Msn/extlib
diff options
context:
space:
mode:
authorLuke Fitzgerald <lw.fitzgerald@googlemail.com>2010-06-20 15:53:36 +0100
committerLuke Fitzgerald <lw.fitzgerald@googlemail.com>2010-06-20 15:53:36 +0100
commitf37228f413ad85fb30b7c9d4f79827a7fa6d2584 (patch)
tree35e194bab091cf3c573e139416c243540becb21d /plugins/Msn/extlib
parent7a6eb53b79bb50526d4af7de7d37cb201306dc2f (diff)
Use built in email verifier
Diffstat (limited to 'plugins/Msn/extlib')
-rw-r--r--plugins/Msn/extlib/phpmsnclass/msn.class.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Msn/extlib/phpmsnclass/msn.class.php b/plugins/Msn/extlib/phpmsnclass/msn.class.php
index 0435905df..b80947211 100644
--- a/plugins/Msn/extlib/phpmsnclass/msn.class.php
+++ b/plugins/Msn/extlib/phpmsnclass/msn.class.php
@@ -871,7 +871,7 @@ class MSN {
$this->debug_message("NS: <<< XFR SB");
$user = array_shift($this->waitingForXFR);
- $bSBresult = $this->switchboard_control($ip, $port, $cki_code, $User, $Message);
+ $bSBresult = $this->switchboard_control($ip, $port, $cki_code, $User, $Message);
/*
$bSBresult = $this->switchboard_control($ip, $port, $cki_code, $aMSNUsers[$nCurrentUser], $sMessage);
if ($bSBresult === false) {
@@ -904,8 +904,8 @@ class MSN {
case 'NLN':
// NS: <<< NLN {status} {email} {networkid} {nickname} {clientid} {dpobj}
// NS: <<< NLN NLN darkip@inflatablegoldfish.com 1 Luke 2685403136 0
- @list(/* NLN */, $email, $network, $nickname, /* clientid */, /* dbobj */,) = @explode(' ', $data);
- $this->callHandler('StatusChange', array('screenname' => $email, 'network' => $network, 'nickname' => $nickname));
+ @list(/* NLN */, $status, $email, $network, $nickname, /* clientid */, /* dbobj */,) = @explode(' ', $data);
+ $this->callHandler('StatusChange', array('screenname' => $email, 'status' => $status, 'network' => $network, 'nickname' => $nickname));
break;
case 'OUT':