diff options
author | ctrlaltca <> | 2013-01-16 09:03:27 +0000 |
---|---|---|
committer | ctrlaltca <> | 2013-01-16 09:03:27 +0000 |
commit | 4566740b98ebcc58d36ca095ee20ebacf5567a4e (patch) | |
tree | 0341ce9d126ab1052cd40cc929dcf0b353a1c61b /framework/Web/THttpRequest.php | |
parent | a8bb9a32eebc3a62686dd9bf559bf47a8b1c915b (diff) |
backported r3253 to trunk/
Diffstat (limited to 'framework/Web/THttpRequest.php')
-rw-r--r-- | framework/Web/THttpRequest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/Web/THttpRequest.php b/framework/Web/THttpRequest.php index 737bd4fa..133d0f2f 100644 --- a/framework/Web/THttpRequest.php +++ b/framework/Web/THttpRequest.php @@ -1320,6 +1320,7 @@ class TUri extends TComponent * The following enumerable values are defined: * - Get: the URL format is like /path/to/index.php?name1=value1&name2=value2... * - Path: the URL format is like /path/to/index.php/name1,value1/name2,value2... + * - HiddenPath: the URL format is like /path/to/name1,value1/name2,value2... * * @author Qiang Xue <qiang.xue@gmail.com> * @version $Id$ @@ -1330,5 +1331,6 @@ class THttpRequestUrlFormat extends TEnumerable { const Get='Get'; const Path='Path'; + const HiddenPath='HiddenPath'; } |