1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-07-31 10:04:20 +03:00

whitespace fix in __parseParams()

This commit is contained in:
Christian Boltz
2020-05-02 01:26:35 +02:00
parent 4e9e3db75d
commit 9833a8f289

View File

@ -323,7 +323,6 @@ class PostfixAdmin {
private function __parseParams($params) { private function __parseParams($params) {
$count = count($params); $count = count($params);
for ($i = 0; $i < $count; $i++) { for ($i = 0; $i < $count; $i++) {
# if (isset($params[$i])) {
if ($params[$i] != '' && $params[$i]{0} === '-' && $params[$i] != '-1') { if ($params[$i] != '' && $params[$i]{0} === '-' && $params[$i] != '-1') {
$key = substr($params[$i], 1); $key = substr($params[$i], 1);
if (isset($params[$i+1])) { if (isset($params[$i+1])) {
@ -338,7 +337,6 @@ class PostfixAdmin {
} else { } else {
$this->args[] = $params[$i]; $this->args[] = $params[$i];
} }
# }
} }
} }