Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Passing a new "preserved parameter" via subcategory

Quote Reply
Passing a new "preserved parameter" via subcategory
I am trying to pass a preserved parameter "card" using subcateogy.
So I saved "card" in the preserved parameter list (with t, g, ...etc.), then I put in the subcategory.html:
Code:
<a href="<%escape_html URL%><%if card%>&card=<%thevalue%><%endif%>"></a>
However, everytime a user clicks on this targetted subcategory, the user gets a blank page. But if you look at the generated URL, you will see this URL (blank page):
g=140%2Findex.php%26card%3D234234;d=1
But if you change the %26 to & or to ; then the you will see the page:
g=140%2Findex.php&card%3D234234;d=1

I tried to fix the issue in CGI.pm uncode the %26 to translate it to & and it works; except I do not want to go that path (for upgrade reasons and others)... any idea bout how to fix this issue in the subcategory.html
thank you in advance..
Mark
Subject Author Views Date
Thread Passing a new "preserved parameter" via subcategory Mark2 4269 Nov 19, 2007, 6:32 PM
Thread Re: [Mark2] Passing a new "preserved parameter" via subcategory
Andy 4196 Nov 20, 2007, 1:39 AM
Thread Re: [Andy] Passing a new "preserved parameter" via subcategory
Mark2 4190 Nov 20, 2007, 7:24 AM
Thread Re: [Mark2] Passing a new "preserved parameter" via subcategory
Andy 4194 Nov 20, 2007, 7:35 AM
Thread Re: [Andy] Passing a new "preserved parameter" via subcategory
Mark2 4175 Nov 20, 2007, 8:10 AM
Post Re: [Mark2] Passing a new "preserved parameter" via subcategory
Andy 4193 Nov 20, 2007, 8:28 AM
Post Re: [Mark2] Passing a new "preserved parameter" via subcategory
brewt 4135 Nov 22, 2007, 12:29 PM