X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fdaily%2Fdaily_profile.php;h=48e736f3759fe90555be965a26b32bb1989c489f;hb=8848f4a3fd7b32a1bbd9139766171701b94b2f42;hp=d0f62bdd4d5020da200d6f40297f0d9fcc1db0b2;hpb=de0c8d04d89614de9deca7be6b6acbe41f500280;p=mailer.git diff --git a/inc/daily/daily_profile.php b/inc/daily/daily_profile.php index d0f62bdd4d..48e736f375 100644 --- a/inc/daily/daily_profile.php +++ b/inc/daily/daily_profile.php @@ -11,13 +11,8 @@ * Kurzbeschreibung : Sendet Erinnerngen aus, damit die Profile * * von den Mitgliedern aktuell gehalten werden * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2015 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -39,20 +34,20 @@ // Some security stuff... if (!defined('__SECURITY')) { die(); -} elseif ((!isHtmlOutputMode()) || (!isResetModeEnabled())) { - // Do not execute when script is in CSS mode or no daily reset +} elseif ((!isHtmlOutputMode()) || (!isDailyResetEnabled())) { + // Do not execute when script is in non-HTML mode or no daily reset return; } elseif (!isExtensionActive('profile')) { - logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-profile disabled'); + logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-profile disabled.'); return; } // Debug line -//* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset started'); +//* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset started.'); if ((isSendProfileUpdateEnabled()) && (getProfileUpdate() > 0) && (getResendProfileUpdate() > 0)) { // Load personal data - $result = SQL_QUERY("SELECT + $result = sqlQuery("SELECT `userid`, `email`, `last_update`, @@ -76,9 +71,9 @@ ORDER BY `userid` ASC", __FILE__, __LINE__); // Are there some notifications to sent? - if (!SQL_HASZERONUMS($result)) { + if (!ifSqlHasZeroNums($result)) { // We need to send-out notifications... - while ($content = SQL_FETCHARRAY($result)) { + while ($content = sqlFetchArray($result)) { // Translate timestamp $content['joined'] = generateDateTime($content['joined'], '0'); @@ -95,7 +90,7 @@ ORDER BY sendEmail($content['userid'], '{--MEMBER_PROFILE_OUTDATED_SUBJECT--}', $message); // Update profile data - SQL_QUERY_ESC("UPDATE + sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `last_profile_sent`=UNIX_TIMESTAMP(), @@ -108,11 +103,11 @@ LIMIT 1", } // END - if // Free result - SQL_FREERESULT($result); + sqlFreeResult($result); } // END - if // Debug line -//* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended'); +//* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.'); // [EOF] ?>