- Issue created by @dsrikanth
- Open on Drupal.org βCore: 9.5.x + Environment: PHP 7.4 & MySQL 8last update
over 1 year ago Waiting for branch to pass - Open on Drupal.org βCore: 9.5.x + Environment: PHP 7.4 & MySQL 8last update
over 1 year ago Waiting for branch to pass -
adriancid β
committed 34a36d82 on 3.x authored by
dsrikanth β
Issue #3363941 by dsrikanth, adriancid: Internal unrouted URLs results...
-
adriancid β
committed 34a36d82 on 3.x authored by
dsrikanth β
- Status changed to Fixed
over 1 year ago 6:02pm 31 May 2023 - πΊπΈUnited States NicholasS
I can confirm our site hit this issue and the patch solved it. Only affected non-admin users. You could test it by masquerading as them. We had a manually created link pointing to a redirect in the menu.
Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
over 1 year ago 6:40pm 21 June 2023 - πΊπΈUnited States saltwaterskin
Shouldn't this line
if ($url->isExternal() || !$original_link->getUrlObject()->isRouted()) {
be this instead?
if ($url->isExternal() || !$url->isRouted()) {
$original_link would not be set on line 83 if I am reading this correctly - πΊπΈUnited States NicholasS
@saltwaterskin I think you are correct, I guess the $url->isExternal() is true so it was never getting to that second option.