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

View File

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