0) { // Mail orders are in pool so we can display them // Add navigation table rows if ($PAGES > 1) { define('__TOP_EMAIL_NAV' , ADD_EMAIL_NAV($PAGES, $CONFIG['mails_page'], true , "3", true)); define('__BOTTOM_EMAIL_NAV', ADD_EMAIL_NAV($PAGES, $CONFIG['mails_page'], false, "3", true)); } else { define('__TOP_EMAIL_NAV' , ""); define('__BOTTOM_EMAIL_NAV', ""); } $SW = 2; $OUT = ""; 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=%d 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.""; } // Prepare data for the row template $content = array( 'sw' => $SW, 'u_link' => ADMIN_USER_PROFILE_LINK($pool[1]), 'subj' => COMPILE_CODE($pool[2]), 'text' => COMPILE_CODE($pool[3]), 'pay' => GET_PAYMENT($pool[5]), 'cat' => GET_CATEGORY($pool[10]), 'sent' => $sent, 'ruids' => str_replace(";", ", ", $pool[4]), 'unconfirmed' => $unconfirmed, 'type' => GET_POOL_TYPE($pool[6]), 'tsend' => $pool[9], 'url' => FRAMETESTER($pool[8]), 'stamp' => MAKE_DATETIME($pool[7], "0"), 'mid' => $pool[0], ); // Load row template and switch colors $OUT .= LOAD_TEMPLATE("admin_email_archiv_row", true, $content); $SW = 3 - $SW; } // Free memory SQL_FREERESULT($result); define('__EMAIL_ROWS', $OUT); // Load main template LOAD_TEMPLATE("admin_email_archiv"); } else { // No mail orders fond OUTPUT_HTML("".ADMIN_NO_MAILS_IN_POOL.""); } // ?>