diff options
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.
|