View Single Post
Old July 12th, 2005, 08:47 PM   #12 (permalink)
LMer
Member
Verified Customer
 
Join Date: Jun 2003
Posts: 41
In search.php if $when = 0 (the default value if no time frame is specified), a search URL is generated that contains the argument 'when=0' which causes searches to fail.

I worked around the issue by setting $when to null if $when=0
I added the following to line 236 of search.php:
if ($when < 1) {$when = "";}

After the code change, searches worked fine.
LMer is offline   Reply With Quote