]> git.mxchange.org Git - mailer.git/blobdiff - inc/filter-functions.php
Naming convention, more usage of EL, new wrapper function introduced:
[mailer.git] / inc / filter-functions.php
index 316bc6c93aa1951efa883d5f26754c25c7e410d8..dac79b3107b5ce52f27a08b3de2c510a955667ed 100644 (file)
@@ -63,15 +63,15 @@ function initFilterSystem () {
                if (isExtensionINstalledAndNewer('sql_patches', '0.6.0')) $add = ", `filter_counter`";
 
                // Load all filters
-               $result = SQL_QUERY("SELECT
-       `filter_name`,`filter_function`,`filter_active`".$add."
+               $result = SQL_QUERY('SELECT
+       `filter_name`,`filter_function`,`filter_active`' . $add . '
 FROM
        `{?_MYSQL_PREFIX?}_filters`
 ORDER BY
-       `filter_id` ASC", __FUNCTION__, __LINE__);
+       `filter_id` ASC', __FUNCTION__, __LINE__);
 
                // Are there entries?
-               if (SQL_NUMROWS($result) > 0) {
+               if (!SQL_HASZERONUMS($result)) {
                        // Load all filters
                        while ($filterArray = SQL_FETCHARRAY($result)) {
                                // Get filter name and function