pimcore / ecommerce-framework-bundle

Ecommerce Framework community bundle provides e-commerce functionality such as product listing and filtering, pricing, carts and checkouts for Pimcore.
https://pimcore.com/docs/platform/Ecommerce_Framework/
Other
8 stars 28 forks source link

[BUGFIX] SelectCategory.php: Cast $value to string #156

Closed MarkTro closed 6 months ago

MarkTro commented 6 months ago

$value can set with an int value (line 73) by "getId()". Trim throws in strict mode an error, if it doesn't get a string. Therefore we need to cast $value to a string.

fashxp commented 6 months ago

thx very much!