Skip to content
Snippets Groups Projects
Verified Commit 2ecd4151 authored by Jess's avatar Jess
Browse files

SA-CORE-2024-001 by s73, douggreen, larowlan, benjifisher, poker10, xjm, lauriii

parent cc4faaa1
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,7 @@
use Drupal\Core\Url;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\Routing\Exception\MethodNotAllowedException;
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
use Symfony\Component\Routing\Matcher\RequestMatcherInterface;
......@@ -237,6 +238,9 @@ protected function getRequestForPath($path, array $exclude) {
catch (AccessDeniedHttpException $e) {
return NULL;
}
catch (NotFoundHttpException $e) {
return NULL;
}
}
}
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