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 was archived by the owner on Dec 31, 2022. It is now read-only.
The canonical_uri() function improperly uses [0] style addressing of characters in a string, which doesn't work in IE6/IE7. The result is broken path handling if you use page-relative or domain-relative paths (absolute paths are fine AFAICT).
The
canonical_uri()function improperly uses[0]style addressing of characters in a string, which doesn't work in IE6/IE7. The result is broken path handling if you use page-relative or domain-relative paths (absolute paths are fine AFAICT).Should use
charAt(0)instead of[0].