X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-guestedit.php;h=3e21f3e3ccf7e6929eff4b81b68c29bd2525083b;hb=b6cf467cb0598f96529e46a9de5377f8218ff0dd;hp=566696a9d7637fbe96310d8d137159e8ec716198;hpb=9afd6ec5878544a7982c50ed9c0dd7de37606d5b;p=mailer.git diff --git a/inc/modules/admin/what-guestedit.php b/inc/modules/admin/what-guestedit.php index 566696a9d7..3e21f3e3cc 100644 --- a/inc/modules/admin/what-guestedit.php +++ b/inc/modules/admin/what-guestedit.php @@ -1,7 +1,7 @@ 0) && (!isDemoModeActive())) { +if ((isPostRequestElementSet('edit')) && (countPostSelection() > 0) && (!isDemoModeActive())) { // Edit menu entries $content['sub'] = $SUB; - $content['chk'] = $chk; + $content['chk'] = countPostSelection(); $cnt = '0'; $OUT = ''; $SW = 2; foreach (postRequestElement('sel') as $sel => $confirm) { @@ -104,10 +100,10 @@ if ((isPostRequestElementSet('edit')) && ($chk > 0) && (!isDemoModeActive())) { // Load template loadTemplate('admin_gmenu_edit_form', false, $content); -} elseif ((isPostRequestElementSet('del')) && (!isDemoModeActive())) { +} elseif ((isPostRequestElementSet('del')) && (countPostSelection() > 0) && (!isDemoModeActive())) { // Del menu entries with or without confirmation $content['sub'] = $SUB; - $content['chk'] = $chk; + $content['chk'] = countPostSelection(); $cnt = '0'; $OUT = ''; @@ -154,7 +150,7 @@ if ((isPostRequestElementSet('edit')) && ($chk > 0) && (!isDemoModeActive())) { $sel = bigintval($sel); // Update entry - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `title`='%s', `action`='%s', `what`='%s' WHERE ".$AND." AND id=%s LIMIT 1", + SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `title`='%s', `action`='%s', `what`='%s' WHERE ".$AND." AND `id`=%s LIMIT 1", array($menu, postRequestElement('sel_action', $sel), postRequestElement('sel_what', $sel), $sel),__FILE__, __LINE__); } // END - foreach loadTemplate('admin_settings_saved', false, getMessage('SETTINGS_SAVED')); @@ -163,7 +159,7 @@ if ((isPostRequestElementSet('edit')) && ($chk > 0) && (!isDemoModeActive())) { case 'del': // Delete menu foreach (postRequestElement('sel') as $sel => $menu) { // Delete enty - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE ".$AND." AND id=%s LIMIT 1", + SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE ".$AND." AND `id`=%s LIMIT 1", array(bigintval($sel)), __FILE__, __LINE__); } // END - foreach loadTemplate('admin_settings_saved', false, getMessage('SETTINGS_SAVED')); @@ -175,7 +171,7 @@ if ((isPostRequestElementSet('edit')) && ($chk > 0) && (!isDemoModeActive())) { $sel = bigintval($sel); // Update entry - SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `visible`='%s', `locked`='%s' WHERE ".$AND." AND id=%s LIMIT 1", + SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `visible`='%s', `locked`='%s' WHERE ".$AND." AND `id`=%s LIMIT 1", array(postRequestElement('visible', $sel), postRequestElement('locked', $sel), $sel), __FILE__, __LINE__); } // END - foreach loadTemplate('admin_settings_saved', false, getMessage('SETTINGS_SAVED')); @@ -186,10 +182,10 @@ if ((isPostRequestElementSet('edit')) && ($chk > 0) && (!isDemoModeActive())) { loadTemplate('admin_menu_unknown_okay', false, postRequestElement('ok')); break; } // END - switch -} elseif ((isPostRequestElementSet('status')) && ($chk > 0) && (!isDemoModeActive())) { +} elseif ((isPostRequestElementSet('status')) && (countPostSelection() > 0) && (!isDemoModeActive())) { // Change status (visible / locked) $content['sub'] = $SUB; - $content['chk'] = $chk; + $content['chk'] = countPostSelection(); // Load template $SW = 2; $cnt = '0'; $OUT = ''; @@ -290,13 +286,13 @@ if ((isPostRequestElementSet('edit')) && ($chk > 0) && (!isDemoModeActive())) { $cnt++; if (($data['sort'] == '0') || (($data['sort'] == 1) && (!empty($SUB)))) { // Is highest position - $NAVI = "{--LOWER--}"; + $NAVI = '{--LOWER--}'; } elseif ($cnt == $max) { // Is lowest position - $NAVI = "{--HIGHER--}"; + $NAVI = '{--HIGHER--}'; } elseif ($data['sort'] > 0) { // Anything else between highest and lowest - $NAVI = "{--HIGHER--}/{--LOWER--}"; + $NAVI = '{--HIGHER--}/{--LOWER--}'; } if (empty($data['action'])) $data['action'] = ' ';