hide popup message if failure is handled - not sure what knock on effect this may...
[Pman.Core] / NotifySend.php
index 01ba200..91afa5a 100644 (file)
@@ -224,7 +224,7 @@ class Pman_Core_NotifySend extends Pman
                 'email' => $email['recipients']
             );
         }
-        print_R('test??');exit;
+         
         if ($email === false || isset($email['error']) || empty($p)) {
             // object returned 'false' - it does not know how to send it..
             $ev = $this->addEvent('NOTIFY', $w, isset($email['error'])  ?
@@ -289,8 +289,8 @@ class Pman_Core_NotifySend extends Pman
         
         $ff = HTML_FlexyFramework::get();
         
-        
-        $dom = array_pop(explode('@', $p->email));
+        $explode_email = explode('@', $p->email);
+        $dom = array_pop($explode_email);
         
         $mxs = $this->mxs($dom);
         $ww = clone($w);