From: Luke Fitzgerald Date: Tue, 29 Jun 2010 00:17:51 +0000 (-0700) Subject: Hide list error if network is not specified X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6aa8ce08ae86ba7bbae958fcd10d2e6a5a0aea30;p=quix0rs-gnu-social.git Hide list error if network is not specified --- 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;