Quote Originally Posted by complich8
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!
Out of pure luck though...
Because it seems it was sometimes not working, and others it worked...
I guess that's maybe due to an antipopup or ad soft I use on many comps, cause I don't remember disabling js.

thanks