diff options
author | xue <> | 2006-03-23 12:11:49 +0000 |
---|---|---|
committer | xue <> | 2006-03-23 12:11:49 +0000 |
commit | 502ef5c173b2ca1220725d9814022102ea5dd749 (patch) | |
tree | 490639c4d0e84b6142653c48911480a88f34fe05 /framework/Web/Services/TPageService.php | |
parent | 4cb6d6bd3c22c18bdbe7dea29e0de9c77ebfe025 (diff) |
Added a new parameter to constructUrl() for encoding GET parameters.
Diffstat (limited to 'framework/Web/Services/TPageService.php')
-rw-r--r-- | framework/Web/Services/TPageService.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/framework/Web/Services/TPageService.php b/framework/Web/Services/TPageService.php index 8d3ccca3..022c1286 100644 --- a/framework/Web/Services/TPageService.php +++ b/framework/Web/Services/TPageService.php @@ -452,11 +452,12 @@ class TPageService extends TService * @param string page path
* @param array list of GET parameters, null if no GET parameters required
* @param boolean whether to encode the ampersand in URL, defaults to false.
+ * @param boolean whether to encode the GET parameters (their names and values), defaults to true.
* @return string URL for the page and GET parameters
*/
- public function constructUrl($pagePath,$getParams=null,$encodeAmpersand=false)
+ public function constructUrl($pagePath,$getParams=null,$encodeAmpersand=false,$encodeGetItems=true)
{
- return $this->getRequest()->constructUrl($this->_id,$pagePath,$getParams,$encodeAmpersand);
+ return $this->getRequest()->constructUrl($this->_id,$pagePath,$getParams,$encodeAmpersand,$encodeGetItems);
}
}
|