X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-adminedit.php;h=de04b2d671ef3fb6ff4d376f34f6df33afff93cd;hb=96dfdd6b8e6a56d6594c3525e5fd2a066697a6de;hp=ed24beee93548c3e32ab912799c8ba52ef6df668;hpb=f2c43b993e03f90202044a0c2ea0abd0866ec6ee;p=mailer.git diff --git a/inc/modules/admin/what-adminedit.php b/inc/modules/admin/what-adminedit.php index ed24beee93..de04b2d671 100644 --- a/inc/modules/admin/what-adminedit.php +++ b/inc/modules/admin/what-adminedit.php @@ -1,7 +1,7 @@ 0) && (!isDemoModeActive())) { +if ((isPostRequestElementSet('edit')) && (countPostSelection() > 0) && (!isDemoModeActive())) { // Edit menu entries // @TODO Kill all constants in this file $content['sub'] = $SUB; - $content['chk'] = $chk; - $cnt = 0; $SW = 2; + $content['chk'] = countPostSelection(); + $cnt = '0'; $SW = 2; foreach (postRequestElement('sel') as $sel => $confirm) { if ($confirm == 1) { $cnt++; @@ -106,13 +102,13 @@ if ((isPostRequestElementSet('edit')) && ($chk > 0) && (!isDemoModeActive())) { // Load template loadTemplate('admin_amenu_edit_form', false, $content); -} elseif ((isPostRequestElementSet('del')) && (!isDemoModeActive())) { +} elseif ((isPostRequestElementSet('del')) && (countPostSelection() > 0) && (!isDemoModeActive())) { // Prepare misc content $content['sub'] = $SUB; - $content['chk'] = $chk; + $content['chk'] = countPostSelection(); // Del menu entries with or without confirmation - $SW = 2; $cnt = 0; $OUT = ''; + $SW = 2; $cnt = '0'; $OUT = ''; foreach (postRequestElement('sel') as $sel => $confirm) { if ($confirm == 1) { $cnt++; @@ -161,7 +157,7 @@ if ((isPostRequestElementSet('edit')) && ($chk > 0) && (!isDemoModeActive())) { `action`='%s', `what`='%s', `descr`='%s' -WHERE ".$AND." AND id=%s LIMIT 1", +WHERE ".$AND." AND `id`=%s LIMIT 1", array( $menu, postRequestElement('sel_action', $sel), @@ -217,9 +213,9 @@ WHERE ".$AND." AND id=%s LIMIT 1", if ((!empty($tid)) && (!empty($fid))) { // Sort menu - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_admin_menu` SET `sort`='%s' WHERE ".$AND." AND id=%s LIMIT 1", + SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_admin_menu` SET `sort`='%s' WHERE ".$AND." AND `id`=%s LIMIT 1", array(bigintval(getRequestElement('tid')), bigintval($fid)), __FILE__, __LINE__); - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_admin_menu` SET `sort`='%s' WHERE ".$AND." AND id=%s LIMIT 1", + SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_admin_menu` SET `sort`='%s' WHERE ".$AND." AND `id`=%s LIMIT 1", array(bigintval(getRequestElement('fid')), bigintval($tid)), __FILE__, __LINE__); } } @@ -240,7 +236,7 @@ WHERE ".$AND." AND id=%s LIMIT 1", $content['sub'] = $SUB; // Init variables - $OUT = ''; $SW = 2; $cnt = 0; + $OUT = ''; $SW = 2; $cnt = '0'; // Process all entries while ($data = SQL_FETCHARRAY($result)) { @@ -249,15 +245,15 @@ WHERE ".$AND." AND id=%s LIMIT 1", // Init navigation variable $data['navi'] = ''; - if (($data['sort'] == 0) || (($data['sort'] == 1) && (!empty($SUB)))) { + if (($data['sort'] == '0') || (($data['sort'] == 1) && (!empty($SUB)))) { // Is highest position - $data['navi'] = "{--LOWER--}"; + $data['navi'] = '{--LOWER--}'; } elseif ($cnt == $max) { // Is lowest position - $data['navi'] = "{--HIGHER--}"; + $data['navi'] = '{--HIGHER--}'; } elseif ($data['sort'] > 0) { // Anything else between highest and lowest - $data['navi'] = "{--HIGHER--}/{--LOWER--}"; + $data['navi'] = '{--HIGHER--}/{--LOWER--}'; } // Fix empty elements for constant (fixes display bugs in Firefox)