]> git.mxchange.org Git - mailer.git/blobdiff - inc/fix_filters.php
A lot has been rewritten, ext-teams added, ext-forced continued:
[mailer.git] / inc / fix_filters.php
index b2762810fe45cc23589bcf2e72bb8a260d320cc3..9209cbfaebc9ed90e1e2580b9df57f8639f31ad9 100644 (file)
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -44,18 +42,18 @@ if (!defined('__SECURITY')) {
 
 // Get all filters
 $result = SQL_QUERY('SELECT
-       `filter_name`, `filter_function`
+       `filter_name`,`filter_function`
 FROM
        `{?_MYSQL_PREFIX?}_filters`
 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) {