diff --git a/plugins/Msn/extlib/phpmsnclass/msn.class.php b/plugins/Msn/extlib/phpmsnclass/msn.class.php index 2c0c765f38..6cb917768f 100644 --- a/plugins/Msn/extlib/phpmsnclass/msn.class.php +++ b/plugins/Msn/extlib/phpmsnclass/msn.class.php @@ -1517,7 +1517,7 @@ class MSN { */ public function sendMessage($to, $message) { if ($message != '') { - list($name, $host, $network) = explode('@', $to); + @list($name, $host, $network) = @explode('@', $to); $network = $network == '' ? 1 : $network; $recipient = $name.'@'.$host;