From 5d02ac2219c95459afb8f7dc7a0457b5c0e98fd0 Mon Sep 17 00:00:00 2001 From: xue <> Date: Thu, 20 Apr 2006 17:06:59 +0000 Subject: Fixed #138 and an error in HTML entity representation for double quotes. --- framework/Web/THttpUtility.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'framework/Web/THttpUtility.php') 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. -- cgit v1.2.3