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
{{ message }}
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.
Starting with version 1.7.0.11 the path for the font "Glyphicons Halflings" in bootstrap is generated with a '//' a the beginning if the variable $_SERVER['DOCUMENT_ROOT'] ends with a '/'.
A local workaround is to fix the document root before calling less: if ('/' === substr($_SERVER['DOCUMENT_ROOT'], -1)) { $_SERVER['DOCUMENT_ROOT'] = substr($_SERVER['DOCUMENT_ROOT'], 0, -1); }
The text was updated successfully, but these errors were encountered:
Starting with version 1.7.0.11 the path for the font "Glyphicons Halflings" in bootstrap is generated with a '//' a the beginning if the variable $_SERVER['DOCUMENT_ROOT'] ends with a '/'.
The resulting https://assets/bootstrap/fonts/glyphicons-halflings-regular.woff is then not found and instead glyph codes displayed by the browser.
It seems to be only a problem of @font-face (with @font-face{ src: url('../fonts/glyphicons-halflings-regular.eot') })
The commit breaking this was: ae5b492
A local workaround is to fix the document root before calling less:
if ('/' === substr($_SERVER['DOCUMENT_ROOT'], -1)) { $_SERVER['DOCUMENT_ROOT'] = substr($_SERVER['DOCUMENT_ROOT'], 0, -1); }
The text was updated successfully, but these errors were encountered: