Skip to content

Commit

Permalink
FilterTitle: fix wrong save name
Browse files Browse the repository at this point in the history
  • Loading branch information
cn-tools committed Mar 12, 2024
1 parent 9632fc7 commit 2a672e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xExtension-FilterTitle/extension.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function handleConfigureAction(): void {
if (Minz_Request::isPost()) {
$configuration = [
'blacklist' => array_filter(Minz_Request::paramTextToArray('blacklist', [])),
'mark_as_readed' => Minz_Request::paramString('mark_as_read'),
'mark_as_read' => Minz_Request::paramString('mark_as_read'),
'whitelist' => array_filter(Minz_Request::paramTextToArray('whitelist', [])),
];
$this->setSystemConfiguration($configuration);
Expand Down

0 comments on commit 2a672e2

Please sign in to comment.