Skip to content
Snippets Groups Projects
Commit 849e5bf3 authored by Larry Garfield's avatar Larry Garfield
Browse files

Better edge case handling of missing variables.

parent ed25afbd
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -35,8 +35,8 @@ public function onKernelRequestAccessCheck(GetResponseEvent $event) {
$router_item = $event->getRequest()->attributes->get('drupal_menu_item');
if (!$router_item['access']) {
throw new AccessDeniedHttpException($message);
if (isset($router_item['access']) && !$router_item['access']) {
throw new AccessDeniedHttpException();
}
}
......
......@@ -42,7 +42,7 @@ public function onKernelControllerLegacy(FilterControllerEvent $event) {
$controller = $event->getController();
// This BC logic applies only to functions. Otherwise, skip it.
if (function_exists($controller)) {
if (is_string($controller) && function_exists($controller)) {
$new_controller = function() use ($router_item) {
return call_user_func_array($router_item['page_callback'], $router_item['page_arguments']);
};
......
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