]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Hide list error if network is not specified
authorLuke Fitzgerald <lw.fitzgerald@googlemail.com>
Tue, 29 Jun 2010 00:17:51 +0000 (17:17 -0700)
committerLuke Fitzgerald <lw.fitzgerald@googlemail.com>
Tue, 29 Jun 2010 00:17:51 +0000 (17:17 -0700)
plugins/Msn/extlib/phpmsnclass/msn.class.php

index 2c0c765f3894609973e700f41e8e556b84ebfe82..6cb917768f546aa47b03d8078c32555c6a91f3bc 100644 (file)
@@ -1517,7 +1517,7 @@ class MSN {
      */\r
     public function sendMessage($to, $message) {\r
         if ($message != '') {\r
-            list($name, $host, $network) = explode('@', $to);\r
+            @list($name, $host, $network) = @explode('@', $to);\r
             $network = $network == '' ? 1 : $network;\r
             $recipient = $name.'@'.$host;\r
 \r