From: Dan Brown Date: Sun, 2 Feb 2020 17:57:21 +0000 (+0000) Subject: Cleaned setting section redirect path X-Git-Tag: v0.28.0~1^2~5^2 X-Git-Url: http://source.bookstackapp.com/bookstack/commitdiff_plain/9d77cca7340dec4872fba4742e7aa7c6d25e6052?hp=-c Cleaned setting section redirect path --- 9d77cca7340dec4872fba4742e7aa7c6d25e6052 diff --git a/app/Http/Controllers/SettingController.php b/app/Http/Controllers/SettingController.php index 7f7724468..892b2d9cf 100644 --- a/app/Http/Controllers/SettingController.php +++ b/app/Http/Controllers/SettingController.php @@ -71,7 +71,8 @@ class SettingController extends Controller } $this->showSuccessNotification(trans('settings.settings_save_success')); - return redirect('/settings#' . $request->get('section', '')); + $redirectLocation = '/settings#' . $request->get('section', ''); + return redirect(rtrim($redirectLocation, '#')); } /**