From: Roland Häder Date: Tue, 6 Oct 2009 20:15:07 +0000 (+0000) Subject: Some double-quotes to single rewritten X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=ca788fbec7763e4d61e918b6c8a7bc03f2e043e9;hp=36c3c8b749a88ce05ad0fda81e00047f9cb5433f Some double-quotes to single rewritten --- 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);