Skip to content

Commit fd8ee46

Browse files
authored
Merge pull request #50 from landofcoder/fix-report-issues
updated tag resource model
2 parents 1187a7f + 82127e7 commit fd8ee46

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Model/ResourceModel/Tag.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,11 @@ protected function isValidPageIdentifier(AbstractModel $object)
139139
* @return $this
140140
* @throws LocalizedException
141141
*/
142-
protected function _afterSave($tag)
142+
protected function _afterSave(AbstractModel $object)
143143
{
144-
$this->_saveTagProducts($tag);
145-
$this->_saveTagStores($tag);
146-
return parent::_afterSave($tag);
144+
$this->_saveTagProducts($object);
145+
$this->_saveTagStores($object);
146+
return parent::_afterSave($object);
147147
}
148148

149149
public function getTagProductTable()

0 commit comments

Comments
 (0)