1
0
mirror of https://github.com/OpenXE-org/OpenXE.git synced 2025-03-05 22:49:48 +01:00

bugfix shopimport $gesamtanzahl is string, should be int

This commit is contained in:
OpenXE 2024-06-02 14:13:42 +02:00
parent 35c5421b96
commit ae4ceda258

@ -1643,7 +1643,7 @@ class Shopimport
$this->drawShopOrderTable($deletedRows);
} else
{
return $count+(isset($gesamtanzahl)?$gesamtanzahl:0);
return $count+(is_numeric($gesamtanzahl)?$gesamtanzahl:0);
}
}