X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmails%2Fbeg_mails.php;h=4dcba25b0d53479ea2b44449ae4da86b898230cb;hp=7712f5fb574aa6ca74659634c337bd8fa02950a4;hb=0715fa7aa8e5e70bcf1d957fb09ae655c3896c4e;hpb=09f5758c42a33a56bdd461c946ffe759a59c54aa diff --git a/inc/mails/beg_mails.php b/inc/mails/beg_mails.php index 7712f5fb57..4dcba25b0d 100644 --- a/inc/mails/beg_mails.php +++ b/inc/mails/beg_mails.php @@ -103,7 +103,10 @@ if (!empty($sql)) { $receiver = ''; $userids = array(); // Okay lets notify all users! - while ($content = merge_array($content, SQL_FETCHARRAY($result_main))) { + while ($row = SQL_FETCHARRAY($result_main)) { + // Merge arrays + $content = merge_array($content, $row); + // Update account SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` @@ -135,10 +138,10 @@ LIMIT 1", $receiver = implode(';', $userids); // Prepare URL - $URL = 'modules.php?module=index&what=login'; + $url = 'modules.php?module=index&what=login'; // Insert mail - addBonusMailToQueue($subject, $message, $receiver, getConfig('beg_notify_bonus'), getConfig('beg_notify_wait'), $URL, 0, 'normal', SQL_NUMROWS($result_main)); + addBonusMailToQueue($subject, $message, $receiver, getConfig('beg_notify_bonus'), getConfig('beg_notify_wait'), $url, 0, 'normal', SQL_NUMROWS($result_main)); } // END - if } // END - if