summaryrefslogtreecommitdiff
path: root/demos/blog/protected/Portlets/SearchPortlet.php
diff options
context:
space:
mode:
authorxue <>2006-11-06 15:22:08 +0000
committerxue <>2006-11-06 15:22:08 +0000
commit63b0c46594a8789b0644be47ec61cf2372cf5ff0 (patch)
treeb9c039726df4e95d001ff426b523b832d3ca92de /demos/blog/protected/Portlets/SearchPortlet.php
parentbce854019ec98edc77b541af3d971a1d95da13af (diff)
Fixed URL redirection broken issue.
Diffstat (limited to 'demos/blog/protected/Portlets/SearchPortlet.php')
-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);
}
}