X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ffix_filters.php;h=f4f95a55d6450e9ab673afa8c9e46e11e65ce2c7;hp=d29a1c323bf975ff22836f6b5668adf5786f794b;hb=8fad776382e63b3f73f8dbe289f229d79cfc2c22;hpb=45c111a206d5c49395e0cde4afa21179fb754f27 diff --git a/inc/fix_filters.php b/inc/fix_filters.php index d29a1c323b..f4f95a55d6 100644 --- a/inc/fix_filters.php +++ b/inc/fix_filters.php @@ -1,7 +1,7 @@ 0) { +// Are there entries? (there should be!) +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 = GET_TOTAL_DATA($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? + // Is there more than one entry? if ($count > 1) { // Then clean them up, except one - SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_filters` WHERE `filter_name`='%s' AND `filter_function`='%s' LIMIT %s", - array($filter['filter_name'], $filter['filter_function'], ($count - 1)), __FILE__, __LINE__); + addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_filters` WHERE `filter_name`='%s' AND `filter_function`='%s' LIMIT %s", + array($filter['filter_name'], $filter['filter_function'], ($count - 1))); } // END - while } // END - while // Rebuild the cache - rebuildCacheFiles('filter', 'filter'); -} else { - // @TODO Why does this happen? In installation phase of sql_patches? - debug_report_bug(basename(__FILE__) . ' did run with no filters in database.'); -} + rebuildCache('filter', 'filter'); +} // END - if // Free result SQL_FREERESULT($result); // Now insert our unqiue key -SQL_QUERY("ALTER TABLE `{!_MYSQL_PREFIX!}_filters` ADD UNIQUE `name_function` (`filter_name` , `filter_function`)", __FILE__, __LINE__); +addExtensionSql('ALTER TABLE `{?_MYSQL_PREFIX?}_filters` DROP KEY `name_function`'); +addExtensionSql('ALTER TABLE `{?_MYSQL_PREFIX?}_filters` ADD UNIQUE INDEX `name_function` (`filter_name`,`filter_function`)'); // [EOF] ?>