From 1b10612c4bee864b25b94991c0a631c172d23957 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20Garci=CC=81a=20de=20La=20Fuente?= Date: Tue, 20 Oct 2015 11:41:33 +0200 Subject: [PATCH] Fixed PHPCS check --- htdocs/product/admin/price_rules.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/product/admin/price_rules.php b/htdocs/product/admin/price_rules.php index d6d494cd61d..76b907e14d4 100644 --- a/htdocs/product/admin/price_rules.php +++ b/htdocs/product/admin/price_rules.php @@ -71,7 +71,7 @@ if ($_POST) { //If the level is between range but percent fields are empty, then we ensure it does not exist in DB if ($check1 && !$check2) { - $db->query("DELETE FROM ".MAIN_DB_PREFIX."product_pricerules WHERE level = ".(int)$i); + $db->query("DELETE FROM ".MAIN_DB_PREFIX."product_pricerules WHERE level = ".(int) $i); } continue;