Security line in all includes changed
[mailer.git] / inc / modules / admin / what-config_rewrite.php
index b9276d55771dc5f665c6ec3e0fc07af43710bb87..777ce50e4ea9010ab2917d9e6ef1283ef9292c88 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__));
 
@@ -44,10 +44,10 @@ if (isset($_POST['ok']))
 {
        // Generate string
        $MODs = array();
-       foreach ($_POST['mod'] as $mod=>$sel)
+       foreach ($_POST['mod'] as $mod => $sel)
        {
                // Now you can never deselect the admin module, bah!!! ;-)
-               if (($sel == 'Y') || ($mod == "admin"))
+               if (($sel == "Y") || ($mod == "admin"))
                {
                        // Add module to queue
                        $MODs[] = $mod;
@@ -72,7 +72,7 @@ if (isset($_POST['ok']))
                if (empty($title)) $title = "---";
 
                // Already registered module?
-               if (ereg($mod, $_CONFIG['rewrite_skipped_mods']))
+               if (ereg($mod, $_CONFIG['rewrite_skip']))
                {
                        // Found
                        $y = ' checked';