You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now it is not possible to have URIs without a scheme for relative links. Unfortunately normalize_scheme makes sure that there is always a // in place.
The documentation itself gives the example of <a href="//admin/dashboard/">Admin dashboard</a>. If admin is not a hostname/domain, this would not lead anywhere. I would suggest that admin/dashboard/ would be the better URI to build here.
I would suggest to change normalize_scheme to accept an empty string as well.
The text was updated successfully, but these errors were encountered:
Right now it is not possible to have URIs without a scheme for relative links. Unfortunately
normalize_scheme
makes sure that there is always a//
in place.The documentation itself gives the example of
<a href="//admin/dashboard/">Admin dashboard</a>
. Ifadmin
is not a hostname/domain, this would not lead anywhere. I would suggest thatadmin/dashboard/
would be the better URI to build here.I would suggest to change
normalize_scheme
to accept an empty string as well.The text was updated successfully, but these errors were encountered: