Hide list error if network is not specified
This commit is contained in:
parent
8301a4d734
commit
6aa8ce08ae
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user