X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Freset%2Freset_daily.php;h=6b159cbcb245ce5acb4be647f93e9ced36c7ade4;hb=3b15416a92af60582c1b622e2bff5ae476c647c1;hp=2694fb51aa5532b351e96d63ef2715c27d2326e4;hpb=cb0ddf186efd5b223638476e74cffb2d3c415407;p=mailer.git diff --git a/inc/reset/reset_daily.php b/inc/reset/reset_daily.php index 2694fb51aa..6b159cbcb2 100644 --- a/inc/reset/reset_daily.php +++ b/inc/reset/reset_daily.php @@ -40,7 +40,7 @@ // Some security stuff... if (!defined('__SECURITY')) { die(); -} elseif ((getOutputMode() != 0) || (!isResetModeEnabled())) { +} elseif ((!isHtmlOutputMode()) || (!isResetModeEnabled())) { // Do not execute when script is in CSS mode or no daily reset return; } elseif (!isExtensionActive('sql_patches')) { @@ -51,21 +51,21 @@ if (!defined('__SECURITY')) { // Update user profiles if (isExtensionInstalledAndNewer('order', '0.1.1')) { // Latest version - SQL_QUERY("UPDATE + SQL_QUERY('UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `receive_mails`=`max_mails`, `mail_orders`=0 WHERE - `receive_mails` != `max_mails`", __FILE__, __LINE__); + `receive_mails` != `max_mails`', __FILE__, __LINE__); } else { // Obsolete version - SQL_QUERY("UPDATE + SQL_QUERY('UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `receive_mails`=`max_mails` WHERE - `receive_mails` != `max_mails`", __FILE__, __LINE__); + `receive_mails` != `max_mails`', __FILE__, __LINE__); } // Transfer points from locked_points to points