diff options
author | xue <> | 2006-04-20 17:09:09 +0000 |
---|---|---|
committer | xue <> | 2006-04-20 17:09:09 +0000 |
commit | c54a230a5926086ff1b69a0dd7e6352dbc0b40ff (patch) | |
tree | 4006daa2f5f5d0cfb90ebc028b9820b077df4a69 /framework/Web/THttpUtility.php | |
parent | 3ff35ae583c52e54418a61cabf3282c00a8039d1 (diff) |
Merge from 3.0 branch till 947.
Diffstat (limited to 'framework/Web/THttpUtility.php')
-rw-r--r-- | framework/Web/THttpUtility.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/THttpUtility.php b/framework/Web/THttpUtility.php index 4cd869b4..3bb78f0f 100644 --- a/framework/Web/THttpUtility.php +++ b/framework/Web/THttpUtility.php @@ -20,8 +20,8 @@ */
class THttpUtility
{
- private static $_encodeTable=array('<'=>'<','>'=>'>','"'=>'"e;');
- private static $_decodeTable=array('<'=>'<','>'=>'>','"e;'=>'"');
+ private static $_encodeTable=array('<'=>'<','>'=>'>','"'=>'"');
+ private static $_decodeTable=array('<'=>'<','>'=>'>','"'=>'"');
/**
* HTML-encodes a string.
|