]> git.mxchange.org Git - mailer.git/blobdiff - inc/filter/rallye_filter.php
Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / filter / rallye_filter.php
index 286b11dbf611afd4790697fd054cafc34472a120..507a35e8356a22277d82704738202799ca4c3fad 100644 (file)
@@ -63,7 +63,7 @@ function FILTER_RALLYE_NOTIFY_USERS ($filterData) {
                ));
 
                // Check for new started but not notified rallyes
-               $result = SQL_QUERY("SELECT SQL_SMALL_RESULT
+               $result = sqlQuery("SELECT SQL_SMALL_RESULT
        `d`.`id`,
        `d`.`title`,
        `d`.`start_time`,
@@ -79,16 +79,16 @@ WHERE
        `d`.`start_time` <= UNIX_TIMESTAMP() AND
        `d`.`end_time` > UNIX_TIMESTAMP()
 LIMIT 1", __FILE__, __LINE__);
-               if (SQL_NUMROWS($result) == 1) {
+               if (sqlNumRows($result) == 1) {
                        // Start rallye
                        autostartReferralRallyes($result);
                } // END - if
 
                // Free memory
-               SQL_FREERESULT($result);
+               sqlFreeResult($result);
 
                // Check for expired rallyes
-               $result = SQL_QUERY("SELECT SQL_SMALL_RESULT
+               $result = sqlQuery("SELECT SQL_SMALL_RESULT
        `d`.`id`,
        `d`.`title`,
        `d`.`start_time`,
@@ -103,13 +103,13 @@ WHERE
        `d`.`expired`='N' AND
        (`d`.`end_time` <= UNIX_TIMESTAMP()" . $sqlAddons['or'] . ")
 LIMIT 1", __FILE__, __LINE__);
-               if ((SQL_NUMROWS($result) == 1) && (isExtensionActive('autopurge'))) {
+               if ((sqlNumRows($result) == 1) && (isExtensionActive('autopurge'))) {
                        // End rallye here...
                        stopRallyeByResult($result);
                } // END - if
 
                // Free memory
-               SQL_FREERESULT($result);
+               sqlFreeResult($result);
        } // END - if
 
        // Return data