Fix for inserted codes while registering of extensions, many rewrites/cleanups:
[mailer.git] / inc / filter-functions.php
index d0e881ae8cd698d221e5faf3abc38f18174a3996..dac79b3107b5ce52f27a08b3de2c510a955667ed 100644 (file)
@@ -63,12 +63,12 @@ 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_HASZERONUMS($result)) {