Closed (fixed)
Project:
Views Filter Block
Version:
5.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
7 May 2007 at 15:55 UTC
Updated:
5 Jul 2007 at 13:17 UTC
I have a view set up to search, and the views-filterblock module pointing to it:
However, when I submit the form, it redirects the page to "?filter0=searchterm" (where searchterm is whatever you enter).
This guy has mentioned it too: http://drupal.org/node/121391.
Apologies if it's something I'm doing wrong, but I've been everywhere and read/tried everything! Thanks!
Comments
Comment #1
karladidas commentedHaving the same problem here.
Comment #2
karladidas commentedSorry if I am doing this wrong but I think I've found the problem.
It appears that the query string variable "q" isn't being added into the filterblock form html.
It can be simply fixed by changing line 133 in views_filterblock.module
133 return drupal_render($newform);
to :
132 $output .= drupal_render($newform);
133 return $output;
I hope that helps.
Comment #3
douggreen commentedIt appears that I forgot to make a 5.x.1.2 release. Please download this version and try again. When in doubt, you can always try the 5.x-dev version also.
Comment #4
douggreen commentedI think that this was fixed, so I'm marking it as such. Please re-open if the 5.x-1.2 version doesn't fix it.
Comment #5
(not verified) commented