' . $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 = '{--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 = array( 'link' => $LINK, 'subject' => $content['subject'], 'timestamp' => generateDateTime($content['timestamp'], 0), 'cat_id' => $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', true, array( 'problem' => $PROBLEM, 'data' => $DATA ) ); } // Free result SQL_FREERESULT($result_data); } // END - while // Remember list in constant for the template $content['surname'] = getUserData('surname'); $content['family'] = getUserData('family'); $content['email'] = '' . getUserData('email') . ''; $content['rows'] = $OUT; $content['nums'] = SQL_NUMROWS($result); $content['userid'] = bigintval(getRequestParameter('userid')); // Free memory SQL_FREERESULT($result); // Load final template loadTemplate('admin_list_links', false, $content); } } else { // No mails left to confirm displayMessage(getMaskedMessage('ADMIN_MEMBER_LINKS', bigintval(getRequestParameter('userid')))); } } else { // User not found displayMessage(getMaskedMessage('ADMIN_MEMBER_404', bigintval(getRequestParameter('userid')))); } } else { // Output selection form with all confirmed user accounts listed addMemberSelectionBox(); } // [EOF] ?>