Aktionen
GX-Bug #70129
geschlossenBeim Migrieren von Eigenschaften zu Varianten, kommt es unter PHP 8 zu einem Fehler, wenn eine Eigenschaft keine Werte hat | When migrating properties to variants in the 4.5.1.0 update, an error occurs under PHP 8 when a property has no values
% erledigt:
0%
Geschätzter Aufwand:
Steps to reproduce:
Betroffene Versionen:
4.7.1.2
Release Notes Langtext:
Beim Migrieren von Eigenschaften zu Varianten, kommt es unter PHP 8 zu keinem Fehler mehr, wenn eine Eigenschaft keine Werte hat
Beschreibung
Updating a GX 4.4 shop with properties without values runs into an error in the 4.5.1.0 update, if PHP 8 is in use.
gambio_updater/updates/v4.5.1.0/product_variants_migration.php:201
if (count($propertyValues[$propertyId])) {
$propertyValues[$propertyId])
can be null, so count will run into an error. !empty()
should be used instead.
Aktionen