0) { // Output rows $OUT = ''; $SW = 2; while ($content = SQL_FETCHARRAY($result)) { // Prepare data for the row template $content = array( 'sw' => $SW, 'trans_id' => $content['trans_id'], 'time_trans' => generateDateTime($content['time_trans'], 3), 'from_link' => generateUserProfileLink($content['userid']), 'to_link' => generateUserProfileLink($content['to_userid']), 'reason' => wordwrap($content['reason'], 15), 'points' => translateComma($content['points']), ); // Load row template add points and switch color $OUT .= loadTemplate('admin_list_transfer_row', true, $content); $total += $content['points']; $SW = 3 - $SW; } // Free memory SQL_FREERESULT($result); } else { // Nothing for in and out $OUT = " ".loadTemplate('admin_settings_saved', true, getMessage('TRANSFER_NO_INOUT_TRANSFERS'))." "; } // ... and add them to a constant for the template $content['rows'] = $OUT; // Remeber total amount $content['total'] = translateComma($total); // Set title $content['title'] = getMessage('TRANSFER_LIST_ALL'); // Set "balance" word $content['balance'] = getMessage('TRANSFER_TOTAL_BALANCE'); // Don't show a delete button $content['delete'] = ' '; // Load final template loadTemplate('admin_list_transfer', false, $content); // [EOF] ?>