From c9f35cebbb30844db59b743c9cee017a3e46e7c8 Mon Sep 17 00:00:00 2001 From: Marcus Nyeholt Date: Mon, 25 Jul 2011 14:35:11 +1000 Subject: [PATCH] BUGFIX: Changed the base URL for the search so it hits the correct action --- code/controllers/DocumentationViewer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/DocumentationViewer.php b/code/controllers/DocumentationViewer.php index fbb31e5..fc0f7db 100755 --- a/code/controllers/DocumentationViewer.php +++ b/code/controllers/DocumentationViewer.php @@ -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; }