= {?ap_inactive_since?} AND (UNIX_TIMESTAMP() - d.`last_online`) >= {?ap_inactive_since?} AND (UNIX_TIMESTAMP() - d.`ap_notified`) >= {?ap_inactive_since?} ".$EXCLUDE_LIST." ORDER BY d.`userid` ASC", __FILE__, __LINE__); if (!SQL_HASZERONUMS($result)) { // Ok, we have found some inactive accounts $OUT = ''; while ($content = SQL_FETCHARRAY($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 SQL_FREERESULT($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] ?>