Active
Project:
Amazon associate tools
Version:
master
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 Oct 2007 at 03:09 UTC
Updated:
14 Feb 2008 at 11:59 UTC
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 .= "
";
Should read:
$datacell .= "
";
Comments
Comment #1
wayland76 commented1. 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)?
Comment #2
scedwar commentedI 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.