Open JeroenJRP opened 1 day ago
The changes in Craft 5.3 that made relation fields multi-instance (https://github.com/craftcms/cms/pull/15400) break the functionality of this plugin.
The immediate problem is that the is_array($value) check in normalizeValue always returns true now, skipping the plugin logic. But there are probably other implications.
is_array($value)
normalizeValue
true
Thanks, will have to look into this. For now, I have released 3.0.1 which has a constraint on Craft CMS < 5.3.
The changes in Craft 5.3 that made relation fields multi-instance (https://github.com/craftcms/cms/pull/15400) break the functionality of this plugin.
The immediate problem is that the
is_array($value)
check innormalizeValue
always returnstrue
now, skipping the plugin logic. But there are probably other implications.