Verified Commit e982d37f authored by Jess's avatar Jess
Browse files

Merged 10.2.2.

parents 68443070 4197bab4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9633,5 +9633,5 @@
    "platform-overrides": {
        "php": "8.1.0"
    },
    "plugin-api-version": "2.6.0"
    "plugin-api-version": "2.3.0"
}
+4 −0
Original line number Diff line number Diff line
@@ -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;
    }
  }

}