We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1187a7f commit 82127e7Copy full SHA for 82127e7
Model/ResourceModel/Tag.php
@@ -139,11 +139,11 @@ protected function isValidPageIdentifier(AbstractModel $object)
139
* @return $this
140
* @throws LocalizedException
141
*/
142
- protected function _afterSave($tag)
+ protected function _afterSave(AbstractModel $object)
143
{
144
- $this->_saveTagProducts($tag);
145
- $this->_saveTagStores($tag);
146
- return parent::_afterSave($tag);
+ $this->_saveTagProducts($object);
+ $this->_saveTagStores($object);
+ return parent::_afterSave($object);
147
}
148
149
public function getTagProductTable()
0 commit comments