You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.
it creates new linking all the time, if i am populating it from a POST.
becouse of this: (line 279) $relationModel = null; if (!empty($fks)) { $relationModel = $modelClass::findOne($fks); }
it creates a new instance
than (line 664) if ($this->_oldRelationValue[$relationName] !== $owner->{$relationName}) {
will be false all the time. it links again, whenever it was a existing relation or not.
i am using php7.1
The text was updated successfully, but these errors were encountered:
it creates new linking all the time, if i am populating it from a POST.
becouse of this: (line 279)
$relationModel = null; if (!empty($fks)) { $relationModel = $modelClass::findOne($fks); }
it creates a new instance
than (line 664)
if ($this->_oldRelationValue[$relationName] !== $owner->{$relationName}) {
will be false all the time. it links again, whenever it was a existing relation or not.
i am using php7.1
The text was updated successfully, but these errors were encountered: