Re: Search BUG
It's not liking the slash mark. In the header.php file remove the following bit of code:
Code:
onsubmit="location.href='<?php bloginfo('home'); ?>/search/' + encodeURIComponent(this.s.value).replace(/%20/g, '+'); return false;"
That was just making the search urls pretty (i.e. /search/bmw+320i) vs (i.e. ?s=bmw+320i)
Basically all the characters (,/?:@&=+$#) need to be encoded via javascript in order for this onsubmit to work. If anyone is willing to help fix this, I'd appreciate it! Otherwise, I'll have to pull it out from the next release.