]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-send_newsletter.php
Fix for newsletter
[mailer.git] / inc / modules / admin / what-send_newsletter.php
index 8f85d134b969370c01cc3657a70d0d026bdb4896..3b2a13d966335ebdf3783e7bb8e0b99170a20519 100644 (file)
  ************************************************************************/
 
 // Some security stuff...
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
-{
+if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
+
 // Add description as navigation point
 ADD_DESCR("admin", basename(__FILE__));
 
-OPEN_TABLE("100%", "admin_content admin_content_align", "");
 if (isset($_POST['ok']))
 {
        $result = SQL_QUERY("SELECT userid, email FROM "._MYSQL_PREFIX."_user_data WHERE status='CONFIRMED' AND nl_receive='Y' ORDER BY userid", __FILE__, __LINE__);
@@ -65,10 +64,10 @@ if (isset($_POST['ok']))
                        }
 
                        // Compile message
-                       $_POST['text'] = stripslashes(COMPILE_CODE($_POST['text']));
+                       $_POST['text'] = COMPILE_CODE($_POST['text']);
 
                        // Load template
-                       $msg = LOAD_EMAIL_TEMPLATE($template, $_POST['text'], $id);
+                       $msg = LOAD_EMAIL_TEMPLATE($template, array('text' => $_POST['text']), $id);
 
                        // ... and send it away!
                        SEND_NEWSLETTER($email, $_POST['subject'], $msg, $_POST['mode']);
@@ -96,6 +95,6 @@ if (isset($_POST['ok']))
                LOAD_TEMPLATE("admin_newsletter_nohtml");
        }
 }
-CLOSE_TABLE();
+
 //
 ?>