]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_autopurge.php
Continued:
[mailer.git] / inc / modules / admin / what-list_autopurge.php
index c9fba992b4ed16a0f1621cdac36fbf993fbf9291..2aec94b1201d45fef5d5b17f2a80b095d5884fbe 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -44,8 +44,8 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Exclude default referral id if set
-$userExclusionSql = ' ';
-$excludedUserids = runFilterChain('config_userid_exclusion_sql', array());
+$userExcludeSql = ' ';
+$excludedUserids = runFilterChain('config_userid_exclusion_sql', []);
 if (isFilledArray($excludedUserids)) {
        // Exclude all
        $userExcludeSql = ' AND `d`.`userid` NOT IN (' . implode(', ', $excludedUserids) . ')';
@@ -54,7 +54,7 @@ if (isFilledArray($excludedUserids)) {
 // Check for all accounts
 $result = sqlQuery("SELECT
        `d`.`userid`,
-       `d`.`gender`,
+       `d`.`sex`,
        `d`.`surname`,
        `d`.`family`,
        `d`.`email`,
@@ -72,14 +72,14 @@ WHERE
 ORDER BY
        `d`.`userid` ASC", __FILE__, __LINE__);
 
-if (!ifSqlHasZeroNums($result)) {
+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'],
+                       'sex'      => $content['sex'],
                        'surname'     => $content['surname'],
                        'family'      => $content['family'],
                        'email'       => '<a href="' . generateEmailLink($content['email'], 'user_data') . '">' . $content['email'] . '</a>',