From 59542cfbcd5ea56a1148e11b331fec17b01dc57f Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sun, 30 Aug 2020 07:41:57 +0000 Subject: [PATCH] Fixing style errors. --- htdocs/takepos/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/takepos/index.php b/htdocs/takepos/index.php index 6ec72417119..2dd57ce391f 100644 --- a/htdocs/takepos/index.php +++ b/htdocs/takepos/index.php @@ -47,7 +47,7 @@ $setterminal = GETPOST('setterminal', 'int'); if ($_SESSION["takeposterminal"] == "") { if ($conf->global->TAKEPOS_NUM_TERMINALS == "1") $_SESSION["takeposterminal"] = 1; // Use terminal 1 if there is only 1 terminal - else if (!empty($_COOKIE["takeposterminal"])) $_SESSION["takeposterminal"] = $_COOKIE["takeposterminal"]; // Restore takeposterminal from previous session + elseif (!empty($_COOKIE["takeposterminal"])) $_SESSION["takeposterminal"] = $_COOKIE["takeposterminal"]; // Restore takeposterminal from previous session } if ($setterminal > 0)