From be2fa82396ec650572819981c23c50c8ec91e3bc Mon Sep 17 00:00:00 2001 From: lvessiller Date: Wed, 9 Sep 2020 11:54:50 +0200 Subject: [PATCH] FIX stickler error comma in argument list --- htdocs/ticket/card.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/ticket/card.php b/htdocs/ticket/card.php index 0cb1673fa81..ba1edf1e11a 100644 --- a/htdocs/ticket/card.php +++ b/htdocs/ticket/card.php @@ -279,7 +279,7 @@ if (empty($reshook)) { // check fields if (!$error) { - if (!GETPOST('subject' , 'alpha')) { + if (!GETPOST('subject', 'alpha')) { $error++; array_push($object->errors, $langs->trans('ErrorFieldRequired', $langs->transnoentities('Subject'))); }