X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-email_archiv.php;h=8ce52b112bc4ff7d705310a366207fb24ec00d23;hb=5b794a32b30ec5322765c89a22c4c27aece94a42;hp=6474a7a1a4e80d4e2c04f777f8ec7ca6e0ee59ee;hpb=64c8349613addc3da2242c5cd6b99d64e3fb5f8e;p=mailer.git diff --git a/inc/modules/admin/what-email_archiv.php b/inc/modules/admin/what-email_archiv.php index 6474a7a1a4..8ce52b112b 100644 --- a/inc/modules/admin/what-email_archiv.php +++ b/inc/modules/admin/what-email_archiv.php @@ -61,7 +61,7 @@ ORDER BY $result_maximum = SQL_QUERY($sql, __FILE__, __LINE__); // Set offset an current page to default values -if (!isGetRequestElementSet('page')) setRequestGetElement('page' , '1'); +if (!isGetRequestElementSet('page')) setRequestGetElement('page' , 1); if (!isGetRequestElementSet('offset')) setRequestGetElement('offset', getConfig('mails_page')); // Add limitation to SQL string @@ -83,8 +83,8 @@ if (SQL_NUMROWS($result) > 0) { $content['top_email_nav'] = ''; $content['bottom_email_nav'] = ''; if ($pages > 1) { - $content['top_email_nav'] = addEmailNavigation($pages, getConfig('mails_page'), true , '3', true); - $content['bottom_email_nav'] = addEmailNavigation($pages, getConfig('mails_page'), false, '3', true); + $content['top_email_nav'] = addEmailNavigation($pages, getConfig('mails_page'), true , 3, true); + $content['bottom_email_nav'] = addEmailNavigation($pages, getConfig('mails_page'), false, 3, true); } // END - if $OUT = ''; $SW = 2; @@ -107,18 +107,18 @@ if (SQL_NUMROWS($result) > 0) { $row = array( 'sw' => $SW, 'u_link' => generateUserProfileLink($pool[1]), - 'subj' => $pool[2], + 'subject' => $pool[2], 'text' => $pool[3], 'pay' => getPaymentTitlePrice($pool[5]), 'cat' => getCategory($pool[10]), 'sent' => $sent, - 'ruserids' => str_replace(';', ", ", $pool[4]), + 'ruserids' => convertReceivers($pool[4]), 'unconfirmed' => $unconfirmed, 'type' => translatePoolType($pool[6]), - 'tsend' => $pool[9], + 'target_send' => $pool[9], 'frametester' => generateFrametesterUrl($pool[8]), 'url' => $pool[8], - 'stamp' => generateDateTime($pool[7], '0'), + 'stamp' => generateDateTime($pool[7], 0), 'mid' => $pool[0], );