X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-mem_add.php;h=ff8ffde4cb1bedfc78d20006b45f4b8fe2acdfb7;hb=4111c233803817fc7c28d56cf3914f6478fa5c82;hp=d420e0b8d4354b07a09101a29fbcb577645c7957;hpb=8a9324b2d931f54f54f4319fd7234910af77012c;p=mailer.git diff --git a/inc/modules/admin/what-mem_add.php b/inc/modules/admin/what-mem_add.php index d420e0b8d4..ff8ffde4cb 100644 --- a/inc/modules/admin/what-mem_add.php +++ b/inc/modules/admin/what-mem_add.php @@ -33,16 +33,13 @@ ************************************************************************/ // 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 desciption as navigation point -ADD_DESCR("admin", basename(__FILE__)); -OUTPUT_HTML("
"); -OPEN_TABLE("100%", "admin_content admin_content_align", ""); +// Add desciption as navigation point +ADD_DESCR("admin", __FILE__); // Check if the admin has entered title and what-php file name... if ((empty($_POST['title'])) && (isset($_POST['ok']))) @@ -56,7 +53,7 @@ if (!isset($_POST['ok'])) $menus = array(); $titles = array(); $below = array(); // Get all available main menus - $result = SQL_QUERY("SELECT action, title, sort FROM "._MYSQL_PREFIX."_member_menu WHERE what='' ORDER BY sort", __FILE__, __LINE__); + $result = SQL_QUERY("SELECT action, title, sort FROM `"._MYSQL_PREFIX."_member_menu` WHERE (what='' OR what IS NULL) ORDER BY sort", __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { // Read menu structure @@ -77,7 +74,7 @@ if (!isset($_POST['ok'])) // Remove double eintries $prev = ""; $dmy = $menus; $dmy2 = $titles; $dmy3 = $below; - foreach ($menus as $key=>$value) + foreach ($menus as $key => $value) { if ($value == $prev) { @@ -93,9 +90,9 @@ if (!isset($_POST['ok'])) } $menus = $dmy; $titles = $dmy2; $below = $dmy3; // Load sub menus :) - foreach ($menus as $key_main=>$value_main) + foreach ($menus as $key_main => $value_main) { - $result = SQL_QUERY_ESC("SELECT what, title, sort FROM "._MYSQL_PREFIX."_member_menu WHERE action='%s' AND what != '' ORDER BY sort", + $result = SQL_QUERY_ESC("SELECT what, title, sort FROM `"._MYSQL_PREFIX."_member_menu` WHERE action='%s' AND what != '' ORDER BY sort", array($value_main), __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { @@ -122,7 +119,7 @@ if (!isset($_POST['ok'])) // Remove double eintries $prev = ""; $dmy = $menus[$value_main]; $dmy2 = $titles[$value_main]; $dmy3 = $below[$value_main]; - foreach ($menus[$value_main] as $key=>$value) + foreach ($menus[$value_main] as $key => $value) { if ($value == $prev) { @@ -142,14 +139,14 @@ if (!isset($_POST['ok'])) $OUT = "