From 90bcc64547e5cd8dc6934b1b88f235f7aea9b595 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 27 Jun 2020 01:59:08 +0200 Subject: [PATCH] Fix phpcs --- htdocs/ticket/list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/ticket/list.php b/htdocs/ticket/list.php index 8d523d88632..8abacee8f47 100644 --- a/htdocs/ticket/list.php +++ b/htdocs/ticket/list.php @@ -327,7 +327,7 @@ foreach ($search as $key => $val) if ($key == 'fk_statut') { $newarrayofstatus = array(); - foreach($search['fk_statut'] as $key2 => $val2) { + foreach ($search['fk_statut'] as $key2 => $val2) { if (in_array($val2, array('openall', 'closeall'))) continue; $newarrayofstatus[] = $val2; }