]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-guest_add.php
A little better SQL, but still does not calculate correctly
[mailer.git] / inc / modules / admin / what-guest_add.php
index 4e53ff7d3ec535ee9cc497c1b20511b6b4ac708d..81659dc623b0c705dddfe5625b0765a93897e5d2 100644 (file)
@@ -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 *
@@ -55,7 +55,7 @@ if (!isFormSent()) {
 
        // Get all available main menus
        $result_menu = SQL_QUERY("SELECT
-       `action`,`title`,`sort`
+       `action`, `title`, `sort`
 FROM
        `{?_MYSQL_PREFIX?}_guest_menu`
 WHERE
@@ -67,13 +67,13 @@ ORDER BY
                // @TODO Cant this be rewritten?
                while ($content = SQL_FETCHARRAY($result_menu)) {
                        // 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
 
                // Remove double eintries
@@ -98,7 +98,7 @@ ORDER BY
                foreach ($menus as $key_main => $value_main) {
                        // Query for sub menus
                        $result = SQL_QUERY_ESC("SELECT
-       `what`,`title`,`sort`
+       `what`, `title`, `sort`
 FROM
        `{?_MYSQL_PREFIX?}_guest_menu`
 WHERE
@@ -116,13 +116,13 @@ ORDER BY `sort` ASC",
                                // 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
 
                                // Remove double eintries
@@ -177,11 +177,11 @@ ORDER BY `sort` ASC",
        $content['action_selection'] = adminAddMenuSelectionBox('guest', 'action', 'menu');
 
        // Display form
-       loadTemplate('admin_add_guest_menu', false, $content);
+       loadTemplate('admin_add_guest_menu', FALSE, $content);
 } elseif (!isDemoModeActive()) {
        // Insert new menu entry
        if (isPostRequestElementSet('menu')) {
-               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_guest_menu` (`action`,`what`,`title`,`sort`,`visible`,`locked`) VALUES ('%s','%s','%s','%s','%s','%s')",
+               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_guest_menu` (`action`, `what`, `title`, `sort`, `visible`, `locked`) VALUES ('%s','%s','%s','%s','%s','%s')",
                        array(
                                postRequestElement('menu'),
                                postRequestElement('name'),
@@ -191,7 +191,7 @@ ORDER BY `sort` ASC",
                                postRequestElement('active'),
                        ), __FILE__, __LINE__);
        } else {
-               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_guest_menu` (`action`,`title`,`sort`,`visible`,`locked`) VALUES ('%s','%s','%s','%s','%s')",
+               SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_guest_menu` (`action`, `title`, `sort`, `visible`, `locked`) VALUES ('%s','%s','%s','%s','%s')",
                        array(
                                postRequestElement('name'),
                                postRequestElement('title'),