} elseif (isPostRequestParameterSet(('reject'))) {
if (countPostSelection() > 0) {
// Reject mail orders
- $OUT = ''; $SW = 2;
+ $OUT = '';
foreach (postRequestParameter('sel') as $id => $value) {
// Secure id number
$id = bigintval($id);
// Prepare data for the row template
$content = array(
- 'sw' => $SW,
'id' => $id,
'url' => postRequestParameter('url', $id),
);
// Load row template and switch colors
$OUT .= loadTemplate('admin_unlock_emails_redir_row', true, $content);
- $SW = 3 - $SW;
- }
+ } // END - foreach
// Load main template
loadTemplate('admin_unlock_emails_redir', false, $OUT);
loadTemplate('admin_settings_saved', false, '{--ADMIN_URLS_BLOCKED--}');
} elseif ((!isFormSent('lock')) && (!isFormSent('accept')) && (!isFormSent('reject'))) {
// Mail orders are in pool so we can display them
- $OUT = ''; $SW = 2;
+ $OUT = '';
while ($content = SQL_FETCHARRAY($result_main)) {
// Prepare data for the template
- $content['sw'] = $SW;
$content['timestamp'] = generateDateTime($content['timestamp'], 2);
// Load row template and switch colors
$OUT .= loadTemplate('admin_unlock_emails_row', true, $content);
- $SW = 3 - $SW;
} // END - while
// Free memory