X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ffilters.php;h=db886a0d651df3c432abe16812a198e50baef5c9;hp=b282543425c85333cd4794093c7ad4d4c2385bc4;hb=ca788fbec7763e4d61e918b6c8a7bc03f2e043e9;hpb=36c3c8b749a88ce05ad0fda81e00047f9cb5433f diff --git a/inc/filters.php b/inc/filters.php index b282543425..db886a0d65 100644 --- a/inc/filters.php +++ b/inc/filters.php @@ -307,7 +307,7 @@ function FILTER_FLUSH_FILTERS () { // Add this filter (all filters are active by default) $insertSQL .= sprintf("('%s','%s','Y'),", $filterName, $filterFunction); $inserted++; - } elseif ($active == "R") { + } elseif ($active == 'R') { // Remove this filter $removeSQL .= sprintf(" (`filter_name`='%s' AND `filter_function`='%s') OR", $filterName, $filterFunction); $removed++; @@ -327,7 +327,7 @@ function FILTER_FLUSH_FILTERS () { // Something has been removed? if ($removed > 0) { // Finish SQL command - $removeSQL = substr($removeSQL, 0, -2) . "LIMIT ".$removed; + $removeSQL = substr($removeSQL, 0, -2) . 'LIMIT '.$removed; // And run it ADD_SQL($removeSQL);