]> git.mxchange.org Git - mailer.git/blobdiff - inc/fix_filters.php
Aliasing should be avoided, better we rename the column or/and use direct column...
[mailer.git] / inc / fix_filters.php
index b2762810fe45cc23589bcf2e72bb8a260d320cc3..cc3e0cc4d30285ec81be876f2cdde8215fb257b1 100644 (file)
@@ -51,11 +51,11 @@ ORDER BY
        `filter_name` ASC, `filter_function` ASC', __FILE__, __LINE__);
 
 // Do we have entries? (we should have!)
-if (SQL_NUMROWS($result) > 0) {
+if (!SQL_HASZERONUMS($result)) {
        // Load row by row
        while ($filter = SQL_FETCHARRAY($result)) {
                // Now search again for this filter and get it's total count
-               $count = countSumTotalData($filter['filter_name'], 'filters', 'filter_id', 'filter_name', true, sprintf(" AND `filter_function`='%s'", $filter['filter_function']));
+               $count = countSumTotalData($filter['filter_name'], 'filters', 'filter_id', 'filter_name', true, sprintf(" AND `filter_function`='%s'", SQL_ESCAPE($filter['filter_function'])));
 
                // Do we have more than one entry?
                if ($count > 1) {