= {?ap_inactive_since?} AND (UNIX_TIMESTAMP() - `d`.`last_online`) >= {?ap_inactive_since?} AND (UNIX_TIMESTAMP() - `d`.`ap_notified`) >= {?ap_inactive_since?} " . runFilterChain('user_exclusion_sql', ' ' . $userExcludeSql) . " ORDER BY `d`.`userid` ASC", __FILE__, __LINE__); if (!ifSqlHasZeroNumRows($result)) { // Ok, we have found some inactive accounts $OUT = ''; while ($content = sqlFetchArray($result)) { // Prepare data for the row template $content = array( 'userid' => $content['userid'], 'gender' => $content['gender'], 'surname' => $content['surname'], 'family' => $content['family'], 'email' => '' . $content['email'] . '', 'joined' => generateDateTime($content['joined'], 2), 'last_online' => generateDateTime($content['last_online'], 2), 'ap_notified' => generateDateTime($content['ap_notified'], 2), ); // Load row template $OUT .= loadTemplate('admin_list_autopurge_row', TRUE, $content); } // END - while // Free memory sqlFreeResult($result); $content['rows'] = $OUT; // Load main template loadTemplate('admin_list_autopurge', FALSE, $content); } else { // All members are active or you don't have any registered displayMessage('{--ADMIN_AUTOPURGE_ALL_ACTIVE--}'); } // [EOF] ?>