If the site using the international system, the references to the blank image are incorrect as they include the /en/ or /fr/ etc path elements when they shouldn't.

For example:
$datacell .= "Only local images are allowed.";

Should read:
$datacell .= "Only local images are allowed.";

Comments

wayland76’s picture

1. I can't see the difference between the two lines you posted.
2. Presumably this is a piece of code. What file is it in? And whereabouts in the file (ie. what function)?

scedwar’s picture

I think filtering may have messed something up here.

From memory, the issue is basically that the img src tag for the blank image genereated incorrectly because it is a relative path, which then includes the language code in the path and results in a 404 on the image. The code needs an absolute path to prevent this.