From ae4ceda25821a7aaffa1b869ec8cac715050af93 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Sun, 2 Jun 2024 14:13:42 +0200 Subject: [PATCH] bugfix shopimport $gesamtanzahl is string, should be int --- www/pages/shopimport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/pages/shopimport.php b/www/pages/shopimport.php index 4b166335..0a1112d1 100644 --- a/www/pages/shopimport.php +++ b/www/pages/shopimport.php @@ -1643,7 +1643,7 @@ class Shopimport $this->drawShopOrderTable($deletedRows); } else { - return $count+(isset($gesamtanzahl)?$gesamtanzahl:0); + return $count+(is_numeric($gesamtanzahl)?$gesamtanzahl:0); } }