X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmails%2Fbeg_mails.php;h=936bbc8b44c12e1675074bbc69cbc58a8e2f545a;hb=1551e5820800685c80c19871a376986c0ad6f0f6;hp=cb5fc1c2835551a66e1c11a44f47bbfb7ae89103;hpb=c72268213d4d4829d845d39c101bb08fbe4ed79a;p=mailer.git diff --git a/inc/mails/beg_mails.php b/inc/mails/beg_mails.php index cb5fc1c283..936bbc8b44 100644 --- a/inc/mails/beg_mails.php +++ b/inc/mails/beg_mails.php @@ -52,12 +52,12 @@ $mark = mktime(0, 0, 0, getConfig('last_month'), getDay(), getYear()); $sql = ''; $mode = ''; // Shall I sent activation or deactivation mail? -$sql = "SELECT `userid`, `email` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE (`beg_rallye_notify` "; +$sql = "SELECT `userid`, `email` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE (`beg_rallye_enable_notify` "; switch (getConfig('beg_rallye')) { case 'Y': // Begging rallye is activated if (getConfig('beg_rallye_enable_notify') == 'Y') { // Okay, let's check for member accounts - $sql .= '= 0 OR (`beg_rallye_notify` > 0 AND `beg_rallye_enable_notify` < `beg_rallye_disable_notify`)'; + $sql .= '= 0 OR (`beg_rallye_enable_notify` > 0 AND `beg_rallye_enable_notify` < `beg_rallye_disable_notify`)'; $mode = 'enable'; } else { // Do not notify! @@ -91,7 +91,7 @@ if (!empty($sql)) { // Check for accounts to be notified $result_main = SQL_QUERY($sql, __FILE__, __LINE__); - if (SQL_NUMROWS($result_main) > 0) { + if (!SQL_HASZERONUMS($result_main)) { // Normal notification mails or bonus mails? $sentBonusMails = ((getConfig('beg_notify_bonus') > 0) && ($mode == 'enable') && (isExtensionActive('bonus'))); @@ -111,7 +111,6 @@ if (!empty($sql)) { SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET - `beg_rallye_notify`=UNIX_TIMESTAMP(), `beg_rallye_%s_notify`=UNIX_TIMESTAMP() WHERE `userid`=%s