]> git.mxchange.org Git - mailer.git/blobdiff - inc/daily/daily_profile.php
Some fixes:
[mailer.git] / inc / daily / daily_profile.php
index 2f48a136e56767239edf213d2b09947bd5c1912d..6e76ce4075b92d0c1eba34177e272a044c44dc35 100644 (file)
@@ -17,7 +17,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
 // 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')) && (isDebugModeEnabled())) {
+} elseif (!isExtensionActive('profile')) {
        logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-profile disabled.');
        return;
 }
@@ -52,7 +52,7 @@ if (!defined('__SECURITY')) {
 
 if ((isSendProfileUpdateEnabled()) && (getProfileUpdate() > 0) && (getResendProfileUpdate() > 0)) {
        // Load personal data
-       $result = SQL_QUERY("SELECT
+       $result = sqlQuery("SELECT
        `userid`,
        `email`,
        `last_update`,
@@ -76,9 +76,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 +95,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,7 +108,7 @@ LIMIT 1",
        } // END - if
 
        // Free result
-       SQL_FREERESULT($result);
+       sqlFreeResult($result);
 } // END - if
 
 // Debug line