0) { // Some unconfirmed mails left if (getRequestElement('del') == "all") { // Delete all unconfirmed mails by this user SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `userid`=%s LIMIT %s", array(bigintval(getRequestElement('userid')), $nums), __FILE__, __LINE__); // Prepare mail and send it away $message = loadEmailTemplate('admin-del_links', $nums, bigintval(getRequestElement('userid'))); sendEmail(getUserData('email'), getMessage('ADMIN_DEL_LINK_SUBJ'), $message); // Display message loadTemplate('admin_settings_saved', false, getMessage('ADMIN_LINKS_DELETED')); } else { // Init variables $OUT = ''; $SW = 2; // List all unconfirmed mails // @TODO Find a way to rewrite this. See some lines above for different queries while (list($id, $id2, $type) = SQL_FETCHROW($result)) { // Initializes some variables $cat = ''; $DATA = ''; $PROBLEM = getMessage('GENERAL_MAIL_PROBLEM'); $result_data = false; // Closes Bug #58 // Load data from stats table... // @TODO Rewrite this to includes/filter switch ($type) { case 'NORMAL': $result_data = SQL_QUERY_ESC("SELECT `subject`, `timestamp_ordered` AS `timestamp`, `cat_id` FROM `{?_MYSQL_PREFIX?}_user_stats` WHERE `id`=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__); $type = 'mailid'; $DATA = $id; $PROBLEM = getMessage('NORMAL_MAIL_PROBLEM'); $LINK = "".$id.""; break; case 'BONUS': $result_data = SQL_QUERY_ESC("SELECT `subject`, `timestamp`, `cat_id` FROM `{?_MYSQL_PREFIX?}_bonus` WHERE `id`=%s LIMIT 1", array(bigintval($id2)), __FILE__, __LINE__); $type = 'bonusid'; $DATA = $id2; $PROBLEM = getMessage('BONUS_MAIL_PROBLEM'); $LINK = "".$id2.""; break; default: // Problem in application detected! // Log the error logDebugMessage(__FILE__, __LINE__, sprintf("Invalid email type %s detected.", $type)); break; } // END - switch if (SQL_NUMROWS($result_data) == 1) { // Mail was found! $content = SQL_FETCHARRAY($result_data); // Fix empty subject if (empty($content['subject'])) $content['subject'] = getMessage('DEFAULT_SUBJECT_LINE'); // Prepare data for the row template $content = array( 'sw' => $SW, 'link' => $LINK, 'subject' => $content['subject'], 'timestamp' => generateDateTime($content['timestamp'], 0), 'cat' => getCategory($content['cat_id']), ); // Load row template $OUT .= loadTemplate('admin_list_links_row', true, $content); } else { // Load template for error $OUT .= loadTemplate('admin_list_links_problem', array( 'sw' => $SW, 'problem' => $PROBLEM, 'data' => $DATA ) ); } // Switch color and free result $SW = 3 - $SW; SQL_FREERESULT($result_data); } // END - while // Free memory SQL_FREERESULT($result); // Remember list in constant for the template $content['surname'] = getUserData('surname'); $content['family'] = getUserData('family'); $content['email'] = "".getUserData('email').""; $content['rows'] = $OUT; $content['nums'] = $nums; $content['userid'] = bigintval(getRequestElement('userid')); // Load final template loadTemplate('admin_list_links', false, $content); } } else { // No mails left to confirm loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_MEMBER_LINKS'), getRequestElement('userid'))); } } else { // User not found loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_MEMBER_404'), getRequestElement('userid'))); } } else { // Output selection form with all confirmed user accounts listed addMemberSelectionBox(); } // [EOF] ?>