0) { // Mail orders are in pool so we can display them // Add navigation table rows $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); } // END - if $OUT = ''; $SW = 2; // @TODO Rewrite to SQL_FETCHARRAY() while ($pool = SQL_FETCHROW($result)) { // Check sent mails and clicks $result_mails = SQL_QUERY_ESC("SELECT `max_rec`, `clicks` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `pool_id`=%s LIMIT 1", array(bigintval($pool[0])), __FILE__, __LINE__); list($sent, $clicks) = SQL_FETCHROW($result_mails); SQL_FREERESULT($result_mails); // Unconfirmed mails $unconfirmed = $sent - $clicks; if ($unconfirmed > 0) { // Add link to list_unconfirmed what-file $unconfirmed = "".$unconfirmed.""; } // END - if // Prepare data for the row template $row = array( 'sw' => $SW, 'u_link' => generateUserProfileLink($pool[1]), 'subject' => $pool[2], 'text' => $pool[3], 'pay' => getPaymentTitlePrice($pool[5]), 'cat' => getCategory($pool[10]), 'sent' => $sent, 'ruserids' => convertReceivers($pool[4]), 'unconfirmed' => $unconfirmed, 'type' => translatePoolType($pool[6]), 'target_send' => $pool[9], 'frametester' => generateFrametesterUrl($pool[8]), 'url' => $pool[8], 'stamp' => generateDateTime($pool[7], 0), 'mid' => $pool[0], ); // Load row template and switch colors $OUT .= loadTemplate('admin_email_archiv_row', true, $row); $SW = 3 - $SW; } // END - while // Remmber generated rows in array $content['rows'] = $OUT; // Load main template loadTemplate('admin_email_archiv', false, $content); } else { // No mail orders fond loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NO_MAILS_IN_POOL')); } // Free memory SQL_FREERESULT($result); // [EOF] ?>