Index: theme/viewfield.theme.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/viewfield/theme/viewfield.theme.inc,v retrieving revision 1.7 diff -u -p -r1.7 viewfield.theme.inc --- theme/viewfield.theme.inc 24 Aug 2010 19:48:41 -0000 1.7 +++ theme/viewfield.theme.inc 24 Aug 2010 20:04:15 -0000 @@ -26,6 +26,10 @@ function theme_viewfield_formatter_defau // @see views_embed_view() $view = views_get_view($view_name); if ($view && $view->access($display)) { + // Override the view's path to the current path. Otherwise, exposed views + // filters would submit to the front page. + $view->override_path = $_GET['q']; + $output = $view->preview($display, $view_args); }