Where there are special characters in image names, these are escaped differently than the links to these images.
There are also differences between Firefox and Chrome, but in both browsers the end result is that all links to these images are broken.
In my case, the original image names contain %20 characters in place of spaces. Here's where things go wrong:
- for the images, all % characters in the name are changed to _ (underscore)
- for the links to these images, the original link is preserved in Chrome
- for the links to these images, the % character is escaped to %25, resulting in %2520 character groups in Firefox
If I could just prevent escaping of the image file names, at least the links would work if using the Chrome browser.
With Firefox, there are two problems, because both the image name and the link are escaped, but in different ways.
Where there are special characters in image names, these are escaped differently than the links to these images.
There are also differences between Firefox and Chrome, but in both browsers the end result is that all links to these images are broken.
In my case, the original image names contain %20 characters in place of spaces. Here's where things go wrong:
If I could just prevent escaping of the image file names, at least the links would work if using the Chrome browser.
With Firefox, there are two problems, because both the image name and the link are escaped, but in different ways.