From 239339f07789a43cb51eb832efb372800c2b54cd Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Willms <tleilax+studip@gmail.com> Date: Wed, 3 Jul 2024 13:46:44 +0000 Subject: [PATCH] use Request::get() instead of Request::option() so that namespaced plugin... Closes #4364 Merge request studip/studip!3164 --- app/controllers/admin/plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/admin/plugin.php b/app/controllers/admin/plugin.php index 8a6935b3dd9..0a01083389f 100644 --- a/app/controllers/admin/plugin.php +++ b/app/controllers/admin/plugin.php @@ -43,7 +43,7 @@ class Admin_PluginController extends AuthenticatedController $settings = $current = $GLOBALS['user']->cfg->PLUGINADMIN_DISPLAY_SETTINGS; foreach ((array)$settings as $key => $value) { - $settings[$key] = Request::option($key, $settings[$key]) ?: null; + $settings[$key] = Request::get($key, $settings[$key]) ?: null; } if ($settings !== $current) { -- GitLab