|
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.
|