Fix redirect after rescanFailedIntegrityCheck to "Overview" page
The link of the rescanFailedIntegrityCheck link is on the sub page "Overview". After clicking the link, the user is, however, redirected to the "Basic settings" page. Signed-off-by: Sven Strickroth <email@cs-ware.de>
This commit is contained in:
parent
047fda6a81
commit
cabccd160b
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ class CheckSetupController extends Controller {
|
|||
public function rescanFailedIntegrityCheck() {
|
||||
$this->checker->runInstanceVerification();
|
||||
return new RedirectResponse(
|
||||
$this->urlGenerator->linkToRoute('settings.AdminSettings.index')
|
||||
$this->urlGenerator->linkToRoute('settings.AdminSettings.index', ['section' => 'overview'])
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue