0) { // Output rows $OUT = ''; $SW = 2; while ($content = SQL_FETCHARRAY($result)) { // Prepare data for the row template $content['sw'] = $SW; $content['time_trans'] = generateDateTime($content['time_trans'], 3); $content['reason'] = wordwrap($content['reason'], 15); // Load row template add points and switch color $OUT .= loadTemplate('admin_list_transfer_row', true, $content); $total += $content['points']; $SW = 3 - $SW; } // END - while // Free memory SQL_FREERESULT($result); } else { // Nothing for in and out $OUT = ' ' . loadTemplate('admin_settings_saved', true, '{--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] ?>