From bc0f4d0eb4685ad3ebc406cc933da854598bc001 Mon Sep 17 00:00:00 2001 From: Samuel Akopyan Date: Thu, 26 Sep 2024 23:29:31 +0300 Subject: [PATCH] Bug #4566 fixed tabs instead of spaces --- framework/console/CConsoleCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/console/CConsoleCommand.php b/framework/console/CConsoleCommand.php index 16e689d9e5..a62838ff19 100644 --- a/framework/console/CConsoleCommand.php +++ b/framework/console/CConsoleCommand.php @@ -229,8 +229,8 @@ protected function resolveRequest($args) $params=array(); // unnamed parameters foreach($args as $arg) { - if (is_null($arg)) - continue; + if (is_null($arg)) + continue; if(preg_match('/^--(\w+)(=(.*))?$/',$arg,$matches)) // an option {