diff options
author | Luke Fitzgerald <lw.fitzgerald@googlemail.com> | 2010-06-14 04:54:03 +0100 |
---|---|---|
committer | Luke Fitzgerald <lw.fitzgerald@googlemail.com> | 2010-06-14 04:54:03 +0100 |
commit | 2ef01c5b7468c269bcb5f1abc837687cc5644b21 (patch) | |
tree | 25d0d4869e1aaf66caa9429db5b015e75895c846 /plugins/Msn | |
parent | d1c9908282052228be9822846c9dcac1f430cbfe (diff) |
Removed Run method as all code has been moved into new methods
Diffstat (limited to 'plugins/Msn')
-rw-r--r-- | plugins/Msn/extlib/phpmsnclass/msn.class.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Msn/extlib/phpmsnclass/msn.class.php b/plugins/Msn/extlib/phpmsnclass/msn.class.php index 73f02f6d7..16ce72bde 100644 --- a/plugins/Msn/extlib/phpmsnclass/msn.class.php +++ b/plugins/Msn/extlib/phpmsnclass/msn.class.php @@ -1097,7 +1097,7 @@ class MSN { $this->signonFailure("!!! Can't connect to server: $this->error");
}
if($this->UpdateContacts() === false) {
- $this->signonFailure('!!! Update Contacts failed');
+ $this->signonFailure('!!! Update contacts failed');
continue;
}
$this->LastPing=time();
@@ -1105,6 +1105,7 @@ class MSN { $start_tm = time();
$ping_tm = time();
if(($this->aContactList = $this->getMembershipList()) === false) {
+ $this->signonFailure('!!! Get Membership list failed');
continue;
}
if ($this->update_pending) {
|