' . $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'; $mailId = $id2; $problemMessage = '{--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 // Do we have an entry? if (SQL_NUMROWS($result_data) == 1) { // Mail was found $content = SQL_FETCHARRAY($result_data); // Fix empty subject if (empty($content['subject'])) $content['subject'] = '{--DEFAULT_SUBJECT_LINE--}'; // Prepare data for the row template $content['link'] = $LINK; $content['timestamp'] = generateDateTime($content['timestamp'], 0); // Load row template $OUT .= loadTemplate('admin_list_links_row', true, $content); } else { // Load template for error $OUT .= loadTemplate('admin_list_links_problem', true, array( 'problem' => $problemMessage, 'mail_id' => $mailId ) ); } // Free result SQL_FREERESULT($result_data); } // END - while // Remember list in constant for the template $content['email'] = '' . getUserData('email') . ''; $content['rows'] = $OUT; $content['nums'] = SQL_NUMROWS($result); $content['userid'] = bigintval(getRequestElement('userid')); // Free memory SQL_FREERESULT($result); // Load final template loadTemplate('admin_list_links', false, $content); } } else { // No mails left to confirm displayMessage('{%message,ADMIN_NO_UNCONFIRMED_MAILS_LEFT=' . bigintval(getRequestElement('userid')) . '%}'); } } else { // User not found displayMessage('{%message,ADMIN_MEMBER_404=' . bigintval(getRequestElement('userid')) . '%}'); } } else { // Output selection form with all confirmed user accounts listed addMemberSelectionBox(); } // [EOF] ?>