summaryrefslogtreecommitdiff
path: root/demos/blog/protected/Portlets
diff options
context:
space:
mode:
Diffstat (limited to 'demos/blog/protected/Portlets')
-rw-r--r--demos/blog/protected/Portlets/SearchPortlet.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/blog/protected/Portlets/SearchPortlet.php b/demos/blog/protected/Portlets/SearchPortlet.php
index c218a739..10ef0499 100644
--- a/demos/blog/protected/Portlets/SearchPortlet.php
+++ b/demos/blog/protected/Portlets/SearchPortlet.php
@@ -31,7 +31,7 @@ class SearchPortlet extends Portlet
public function search($sender,$param)
{
$keyword=$this->Keyword->Text;
- $url=$this->Service->constructUrl('SearchPost',array('keyword'=>$keyword));
+ $url=$this->Service->constructUrl('SearchPost',array('keyword'=>$keyword),false);
$this->Response->redirect($url);
}
}