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
8427ecf685
commit
509dcbe774
|
@ -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 New Issue