I have a taxonomy view set up to take one argument (a taxonomy term id) which generally gets users in the right area by clicking on a menu item. Also in this view, I have several exposed filters, which I show using the views_filterblock module to allow users to zero in from there. It all display properly but a few problems:

1. The views_filterblock is only configured to show on taxonomy/term/* pages and additionally
is pointed at my custom taxonomy_term view. First problem, the termid is required by my view,
but the views_filterblock module seems to hardcode the form submit url to be the url of the view without taking arguments into consideration on line 94:

$form['#action'] = url($view->url);

How can I change this to just be the URL of the currently displayed page which will have been
set correctly with termid from the menu item?

2. Lastly, I think there may be a bug perhaps when this module is used with Drupal 5.x, as
even when I manually edit the URL above correctly to show up correctly in the HTML, when
I click submit on the filter search, instead of going to the following:

http://mysite/?q=taxonomy/term/6&filter0=**ALL**&filter1=**ALL**&filter2...

it incorrectly tries to go to:

http://voipage/?filter0=**ALL**&filter1=**ALL**&filter2=**ALL**&filter3=...

I'm new to drupal (and must say I like what I have seen so far) - so hopefully these aren't totally dumb questions.