Originally Posted by
David75
Well, it works again for me
The thing is that it didn't work yesterday night and today, on 2 different comps, with different browsers in different places (home and work)
Thanks for the input
c u
Turns out, your 2 different computers and 2 different browsers both had javascript disabled.
But it was also actually an error in the template. supposed to be
PHP Code:
a href="/search.php$session[sessionurl_q]"
Instead, it was:
PHP Code:
a href="/search.php$session%5Bsessionurl_q%5D"
The first interprets $session as an array, and sessionurl_q as the index of that array. The second, treats $session%5Bsessionurl_q%5D as an undefined variable, some white space, and some text, and prints the text. So it was going to something like /search.php%5Bsessionurl_q% instead of /search.php?s=stuff
The javascript-enabled version of this was functional, so nobody with js enabled would have seen it.
Good catch!