Quote:
Originally Posted by noppid
The problem is the encoded ampersand on the item URL var.
urlencode is doing it. I had this issue in an eBay Developer Application I run.
In the functions file on like line 57, add one line of code after the urlencode that looks like this.
PHP Code:
// encode URL $encodedlink = urlencode($rightlink); $encodedlink = str_replace("%26amp%3B", "&" , $encodedlink);
That fixed it for us. YMMV.
|
OK -- when you say functions file are you talking about the /includes/function.php -- because if so, in that file, my first occurrence of the word urlencode is not anywhere near line 57-- by line 1376.
I'd like to get this fix -- but I don't want to screw things up worse by following half instructions making the assumption I know the key to the other half.
What is the exact file I need to modify and what is the phrase I need to search for to insert the patch afterward?
Thank you