Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / daily / daily_profile.php
index 34e74451233c4ff72bb9a39e174545a785625ce2..6e76ce4075b92d0c1eba34177e272a044c44dc35 100644 (file)
@@ -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