BUGFIX: Changed the base URL for the search so it hits the correct action

This commit is contained in:
Marcus Nyeholt 2011-07-25 14:35:11 +10:00
parent 99951426ed
commit c9f35cebbb

View File

@ -759,7 +759,7 @@ class DocumentationViewer extends Controller {
$form = new Form($this, 'DocumentationSearchForm', $fields, $actions);
$form->disableSecurityToken();
$form->setFormMethod('get');
$form->setFormAction('home/DocumentationSearchForm');
$form->setFormAction(self::$link_base . 'DocumentationSearchForm');
return $form;
}