Javascript doesnt like the & in the url..(doesnt work in some browsers)
thats why in the showimage template the should be a smal modification.
find:
Code:
Content visible to verified customers only.
and replace with
Code:
Content visible to verified customers only.
there are 2 changes
the & before imageid changed to & only
and
the SESSIONURL that is defined in headinclude template specially for javascript purpose.. (instead of $session[sessionurl])
its: var SESSIONURL = "$session[sessionurl_js]";
(we have it so we use it instead of $session[sessionurl] in javascript)
if you find other instances.. remind you that it has following format as defined in class core:
php sessionurl:
$this->vars['sessionurl'] = 's=' . $this->vars['dbsessionhash'] .
'&';
while the javascript version is:
$this->vars['sessionurl_js'] = 's=' . $this->vars['dbsessionhash'] .
'&';
so for both.. you need a ? and the & or & is included..
thats all
Luc