hide popup message if failure is handled - not sure what knock on effect this may...
[Pman.Core] / MessagePreview.php
index 5fb5d6f..e12a031 100644 (file)
@@ -18,8 +18,9 @@ class Pman_Core_MessagePreview extends Pman
         return true;
     }
     
-    function get()
+    function get($v, $opts=array())
     {
         if(empty($_REQUEST['_id']) || empty($_REQUEST['_table'])){
             $this->jerr('Missing Options');
         }
@@ -34,7 +35,7 @@ class Pman_Core_MessagePreview extends Pman
         
     }
     
-    function post()
+    function post($v)
     {
         if(empty($_REQUEST['_id']) || empty($_REQUEST['_table'])){
             $this->jerr('Missing Options');
@@ -65,7 +66,6 @@ class Pman_Core_MessagePreview extends Pman
         
         $this->jok("SUCCESS");
         
-        
         /*
         $mid = $_REQUEST['_id'];
         
@@ -114,6 +114,8 @@ class Pman_Core_MessagePreview extends Pman
 
         $content = $x->{$method}($this, $this->authUser);
         
+        $content['bcc'] = array();
+        
         $sent = $core_email->send($content);
         
         if(is_object($sent)){