Skip to content

Commit

Permalink
Fixes for Magento 2.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ihorvansach committed Mar 21, 2023
1 parent 255deae commit d5f8527
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Controller/Adminhtml/Category/Save.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ protected function filterParams($data)
}
}

$inputFilter = new \Zend_Filter_Input(
$inputFilter = $this->getFilterInput(
$filterRules,
[],
$data
Expand Down
2 changes: 1 addition & 1 deletion Controller/Adminhtml/Comment/Save.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ protected function filterParams($data)
}
}

$inputFilter = new \Zend_Filter_Input(
$inputFilter = $this->getFilterInput(
$filterRules,
[],
$data
Expand Down
2 changes: 1 addition & 1 deletion Controller/Adminhtml/Post/Save.php
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ protected function filterParams($data)
}
}

$inputFilter = new \Zend_Filter_Input(
$inputFilter = $this->getFilterInput(
$filterRules,
[],
$data
Expand Down
2 changes: 1 addition & 1 deletion Controller/Adminhtml/Tag/Save.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ protected function filterParams($data)
}
}

$inputFilter = new \Zend_Filter_Input(
$inputFilter = $this->getFilterInput(
$filterRules,
[],
$data
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"name": "magefan/module-blog",
"description": "Implements Blog functionality on Magento 2 store",
"require": {
"magefan/module-community" : ">=2.1.12",
"magefan/module-community" : ">=2.1.13",
"magefan/module-blog-graph-ql" : ">=2.1.7",
"magefan/module-wysiwyg-advanced" : ">=2.0.14"
},
"suggest": {
"magefan/module-amp-blog": "Install this module to activate Blog integration with the Plumrocket AMP extension."
},
"type": "magento2-module",
"version": "2.10.12.2",
"version": "2.10.12.3",
"autoload": {
"files": [ "registration.php" ],
"psr-4": {
Expand Down

0 comments on commit d5f8527

Please sign in to comment.