[various] Fix *_addon_admin_post parameters
This commit is contained in:
parent
2394700e29
commit
1d942d3205
|
@ -56,15 +56,13 @@ function cookienotice_addon_admin(App $a, &$s)
|
|||
|
||||
/**
|
||||
* cookienotice_addon_admin_post
|
||||
* addon_settings_post hook
|
||||
* handles the post request from the admin panel
|
||||
*
|
||||
* @param App $a
|
||||
* @param string $b
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function cookienotice_addon_admin_post(App $a, &$b)
|
||||
function cookienotice_addon_admin_post(App $a)
|
||||
{
|
||||
if (!is_site_admin()) {
|
||||
return;
|
||||
|
@ -73,7 +71,7 @@ function cookienotice_addon_admin_post(App $a, &$b)
|
|||
if ($_POST['cookienotice-submit']) {
|
||||
Config::set('cookienotice', 'text', trim(strip_tags($_POST['cookienotice-text'])));
|
||||
Config::set('cookienotice', 'oktext', trim(strip_tags($_POST['cookienotice-oktext'])));
|
||||
info(L10n::t('cookienotice Settings saved.') . EOL);
|
||||
info(L10n::t('cookienotice Settings saved.'));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ function pageheader_addon_admin(App &$a, &$s)
|
|||
return;
|
||||
}
|
||||
|
||||
function pageheader_addon_admin_post(App $a, &$b)
|
||||
function pageheader_addon_admin_post(App $a)
|
||||
{
|
||||
if(!is_site_admin()) {
|
||||
return;
|
||||
|
@ -52,7 +52,7 @@ function pageheader_addon_admin_post(App $a, &$b)
|
|||
if (isset($_POST['pageheader-words'])) {
|
||||
Config::set('pageheader', 'text', trim(strip_tags($_POST['pageheader-words'])));
|
||||
}
|
||||
info(L10n::t('pageheader Settings saved.') . EOL);
|
||||
info(L10n::t('pageheader Settings saved.'));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user