Skip to content
Snippets Groups Projects
Commit 7e39ea1f authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

use Request::get() instead of Request::option() so that namespaced plugin...

Closes #4364

Merge request studip/studip!3164
parent e699246d
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment