yii-dream-team/yii2-upload-behavior

Can't reset record value of uploaded early file

Opened this issue · 0 comments

How to reset the value of a previously attached file. This code always return old value, why for?

} else {
if (true !== $this->owner->isNewRecord && empty($this->owner->{$this->attribute})) {
$this->owner->{$this->attribute} = ArrayHelper::getValue($this->owner->oldAttributes, $this->attribute,
null);
}
}