In aggregated CSS files paths in url() statements are not surrounded by quotes -> url(""). This way, if a path contains spaces, the file (usually a background image) can't be loaded by the browser.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | 798826.patch | 391 bytes | Standart |
Comments
Comment #1
Standart commentedPatch attached.
Comment #3
damien tournoud commentedWhy not, but spaces in URLs are *not* valid. You should use '+' or '%20' (depending on the part of the URL the space is in) for this.
Comment #4
Standart commentedThe problem appeared on my dev machine, where I don't care too much how I name my folders. So I thought it would help in such scenarios without hurting anyone.
Comment #5
Standart commented#1: 798826.patch queued for re-testing.
Comment #7
sunWhen actually using + or %20 instead of spaces, you don't need quotes.
Hence, I suspect we're missing a urlencode() somewhere instead.
PS: Who's able to remove that "browser system" component? :)