X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-guest_add.php;h=b17b369e97621c8fbc569331156813620b479e66;hp=20c957f1876292256b5e1637b5b972cd5d3f26b0;hb=49acdb7a7adbcf25a8e8683b5581bfcec72b23bd;hpb=c3b4eaf29946349ff058691db2dcb615a5379bb2 diff --git a/inc/modules/admin/what-guest_add.php b/inc/modules/admin/what-guest_add.php index 20c957f187..b17b369e97 100644 --- a/inc/modules/admin/what-guest_add.php +++ b/inc/modules/admin/what-guest_add.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2015 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -44,9 +44,9 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { addYouAreHereLink('admin', __FILE__); // Check if the admin has entered title and what-php file name... -if (((!isPostRequestParameterSet('title')) || (!isPostRequestParameterSet('menu'))) && (isFormSent())) { +if (((!isPostRequestElementSet('title')) || (!isPostRequestElementSet('menu'))) && (isFormSent())) { // Abort adding the menu entry - unsetPostRequestParameter('ok'); + unsetPostRequestElement('ok'); } // END - if if (!isFormSent()) { @@ -54,7 +54,7 @@ if (!isFormSent()) { $menus = array(); $titles = array(); $below = array(); // Get all available main menus - $result_menu = SQL_QUERY("SELECT + $result_menu = sqlQuery("SELECT `action`, `title`, `sort` FROM `{?_MYSQL_PREFIX?}_guest_menu` @@ -62,18 +62,19 @@ WHERE (`what`='' OR `what` IS NULL) ORDER BY `sort` ASC", __FILE__, __LINE__); - if (!SQL_HASZERONUMS($result_menu)) { + + if (!ifSqlHasZeroNumRows($result_menu)) { // Read menu structure // @TODO Cant this be rewritten? - while ($content = SQL_FETCHARRAY($result_menu)) { + while ($content = sqlFetchArray($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 @@ -97,7 +98,7 @@ ORDER BY // Load sub menus :) foreach ($menus as $key_main => $value_main) { // Query for sub menus - $result = SQL_QUERY_ESC("SELECT + $result = sqlQueryEscaped("SELECT `what`, `title`, `sort` FROM `{?_MYSQL_PREFIX?}_guest_menu` @@ -107,22 +108,23 @@ WHERE `what` IS NOT NULL ORDER BY `sort` ASC", array($value_main), __FILE__, __LINE__); - if (!SQL_HASZERONUMS($result)) { + + if (!ifSqlHasZeroNumRows($result)) { // Initialize arrays $menus[$value_main] = array(); $titles[$value_main] = array(); $below[$value_main] = array(); // Read menu structure - while ($content = SQL_FETCHARRAY($result)) { + while ($content = sqlFetchArray($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 @@ -145,12 +147,12 @@ ORDER BY `sort` ASC", } // END - if // Free memory - SQL_FREERESULT($result); + sqlFreeResult($result); } // END - foreach } // END - if // Free memory - SQL_FREERESULT($result_menu); + sqlFreeResult($result_menu); $OUT = '