diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-11-04 10:07:42 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-11-04 10:07:42 +0000 |
| commit | d9066bbe5753dab604d925fe3a9f394d16c26dbf (patch) | |
| tree | 2c2f13dacaae9a14a4c12d9b599b646be41decf5 /app/controllers/admin | |
| parent | 8adecd6b6acbbd2241958be9c7bc0dc456212f5f (diff) | |
remove Request::quoted() and Request::quotedArray(), fixes #4799
Closes #4799
Merge request studip/studip!3589
Diffstat (limited to 'app/controllers/admin')
| -rw-r--r-- | app/controllers/admin/ilias_interface.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin/ilias_interface.php b/app/controllers/admin/ilias_interface.php index 3bfebae..d0e59ea 100644 --- a/app/controllers/admin/ilias_interface.php +++ b/app/controllers/admin/ilias_interface.php @@ -104,7 +104,7 @@ class Admin_IliasInterfaceController extends AuthenticatedController //store config entry Config::get()->store('ILIAS_INTERFACE_BASIC_SETTINGS', $this->ilias_interface_config); - Config::get()->store('ILIAS_INTERFACE_MODULETITLE', Request::quoted('ilias_interface_moduletitle')); + Config::get()->store('ILIAS_INTERFACE_MODULETITLE', Request::get('ilias_interface_moduletitle')); PageLayout::postSuccess(_('Einstellungen wurden gespeichert.')); } $this->redirect($this->url_for('admin/ilias_interface')); |
