Skip to content

Commit d5f8527

Browse files
committed
Fixes for Magento 2.4.6
1 parent 255deae commit d5f8527

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Controller/Adminhtml/Category/Save.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ protected function filterParams($data)
5151
}
5252
}
5353

54-
$inputFilter = new \Zend_Filter_Input(
54+
$inputFilter = $this->getFilterInput(
5555
$filterRules,
5656
[],
5757
$data

Controller/Adminhtml/Comment/Save.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ protected function filterParams($data)
3737
}
3838
}
3939

40-
$inputFilter = new \Zend_Filter_Input(
40+
$inputFilter = $this->getFilterInput(
4141
$filterRules,
4242
[],
4343
$data

Controller/Adminhtml/Post/Save.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ protected function filterParams($data)
176176
}
177177
}
178178

179-
$inputFilter = new \Zend_Filter_Input(
179+
$inputFilter = $this->getFilterInput(
180180
$filterRules,
181181
[],
182182
$data

Controller/Adminhtml/Tag/Save.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected function filterParams($data)
3535
}
3636
}
3737

38-
$inputFilter = new \Zend_Filter_Input(
38+
$inputFilter = $this->getFilterInput(
3939
$filterRules,
4040
[],
4141
$data

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"name": "magefan/module-blog",
33
"description": "Implements Blog functionality on Magento 2 store",
44
"require": {
5-
"magefan/module-community" : ">=2.1.12",
5+
"magefan/module-community" : ">=2.1.13",
66
"magefan/module-blog-graph-ql" : ">=2.1.7",
77
"magefan/module-wysiwyg-advanced" : ">=2.0.14"
88
},
99
"suggest": {
1010
"magefan/module-amp-blog": "Install this module to activate Blog integration with the Plumrocket AMP extension."
1111
},
1212
"type": "magento2-module",
13-
"version": "2.10.12.2",
13+
"version": "2.10.12.3",
1414
"autoload": {
1515
"files": [ "registration.php" ],
1616
"psr-4": {

0 commit comments

Comments
 (0)