Hi,
I'm trying to do something like:
http://www.domain.com/cgi-bin/search.cgi?catid=2
Now, from looking in Search.pm, I found:
...I've changed this to:
Maybe this could be a fix? I'm sure lots of other people wanna do basic searches (like I'm doing, with a dropdown)
Cheers
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates
I'm trying to do something like:
http://www.domain.com/cgi-bin/search.cgi?catid=2
Now, from looking in Search.pm, I found:
Code:
return search() if defined $args->{query} and $args->{query} =~ /\S/;...I've changed this to:
Code:
return search() if defined (($args->{query} =~ /\S/ && $args->{query}) || $IN->param('catid'));Maybe this could be a fix? I'm sure lots of other people wanna do basic searches (like I'm doing, with a dropdown)
Cheers
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates

