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
The Uri::convertUrl function does not correctly handle paths prefixed by drive letters, like e.g. E:/grav/user/pages/02.foo. As a consequence, the directory-relative links do not work in Windows.
The demo code below shows the problem. The call to Uri::parseUrl splits E:/grav/user/pages/03.bar to a "scheme" E and the remaing path /grav/user/pages/03.bar.
The
Uri::convertUrl
function does not correctly handle paths prefixed by drive letters, like e.g.E:/grav/user/pages/02.foo
. As a consequence, the directory-relative links do not work in Windows.The demo code below shows the problem. The call to
Uri::parseUrl
splitsE:/grav/user/pages/03.bar
to a "scheme"E
and the remaing path/grav/user/pages/03.bar
.The text was updated successfully, but these errors were encountered: