X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-admin_add.php;h=e3124ced44d38fe509c4c2ab9ae3f31fe70bd7cc;hb=4f7df133f736da124e6f7bd02008b9093f736451;hp=ddcfa970cbf0e8ab844493e0e0666e42d6687382;hpb=20741b93fd58620af677a7f1039ffd16ea6ec689;p=mailer.git diff --git a/inc/modules/admin/what-admin_add.php b/inc/modules/admin/what-admin_add.php index ddcfa970cb..e3124ced44 100644 --- a/inc/modules/admin/what-admin_add.php +++ b/inc/modules/admin/what-admin_add.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -50,22 +50,24 @@ if ((isFormSent()) && ((!isPostRequestElementSet('title')) || (!isPostRequestEle if (!isFormSent()) { // Create arrays - $menus = array(); $titles = array(); $below = array(); + $menus = array(); + $titles = array(); + $below = array(); // Get all available main menus - $result = SQL_QUERY("SELECT `action`,`title`,`sort` FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE (`what`='' OR `what` IS NULL) ORDER BY `sort` ASC", __FILE__, __LINE__); + $result = SQL_QUERY("SELECT `action`, `title`, `sort` FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE (`what`='' OR `what` IS NULL) ORDER BY `sort` ASC", __FILE__, __LINE__); if (!SQL_HASZERONUMS($result)) { // Read menu structure // @TODO Cant this be rewritten? while ($content = SQL_FETCHARRAY($result)) { // Menu actions - $menus[] = $content['action']; + array_push($menus, $content['action']); // Menu titles - $titles[] = $content['title']; + array_push($titles, $content['title']); // Below this menu point should the new be added so we simply increase the sort value by 1 :-) - $below[] = $content['sort'] + 1; + array_push($below, $content['sort'] + 1); } // END - while // Free memory @@ -91,7 +93,7 @@ if (!isFormSent()) { // Load sub menus :) foreach ($menus as $key_main => $value_main) { - $result = SQL_QUERY_ESC("SELECT `what`,`title`,`sort` FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `action`='%s' AND `what` != '' AND `what` IS NOT NULL ORDER BY `sort` ASC", + $result = SQL_QUERY_ESC("SELECT `what`, `title`, `sort` FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `action`='%s' AND `what` != '' AND `what` IS NOT NULL ORDER BY `sort` ASC", array($value_main), __FILE__, __LINE__); if (!SQL_HASZERONUMS($result)) { // Init arrays @@ -102,13 +104,13 @@ if (!isFormSent()) { // Read menu structure while ($content = SQL_FETCHARRAY($result)) { // Menu actions - $menus[$value_main][] = $content['what']; + array_push($menus[$value_main], $content['what']); // Menu titles - $titles[$value_main][] = $content['title']; + array_push($titles[$value_main], $content['title']); // Below this menu point should the new be added so we simply increase the sort value by 1 :-) - $below[$value_main][] = $content['sort'] + 1; + array_push($below[$value_main], $content['sort'] + 1); } // END - while // Free memory @@ -158,12 +160,12 @@ if (!isFormSent()) { $content['action_selection'] = adminAddMenuSelectionBox('admin', 'action', 'menu'); // Display form - loadTemplate('admin_add_admin_menu', false, $content); + loadTemplate('admin_add_admin_menu', FALSE, $content); } elseif (!isDemoModeActive()) { // Insert new menu entry if (isPostRequestElementSet('menu')) { // Add sub menu - SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('%s','%s','%s','%s','%s')", + SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_admin_menu` (`action`, `what`, `title`, `descr`, `sort`) VALUES ('%s','%s','%s','%s','%s')", array( postRequestElement('menu'), postRequestElement('name'),