iterate in $data until fields for empty relation are over
All checks were successful
soko-web/pipeline/pr-master This commit looks good

This commit is contained in:
Bence Pőcze 2023-05-28 15:29:28 +02:00 committed by Bence Pőcze
parent dd855a6d6b
commit da2801560d
Signed by: Gitea
GPG Key ID: 7B89B83EED9AD2C6

View File

@ -278,7 +278,10 @@ class PersistentDataManager implements IPersistentDataManager
$method = 'set' . str_replace('_', '', ucwords($relation, '_'));
$model->$method($relationModel);
} else {
next($data);
while (substr($key, 0, strlen($relation . '__')) === $relation . '__') {
next($data);
$key = key($data);
}
}
next($relations);