From 4039a24c31033e02aec87b235e3c18d338cfe496 Mon Sep 17 00:00:00 2001 From: ngleader Date: Wed, 5 Jan 2011 08:36:34 +0000 Subject: [PATCH] =?UTF-8?q?#19439953=20JSON=20=EC=B6=9C=EB=A0=A5=EC=8B=9C?= =?UTF-8?q?=20=ED=83=AD=EB=AC=B8=EC=9E=90=20=EC=B9=98=ED=99=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@8015 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- classes/display/JSONDisplayHandler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/classes/display/JSONDisplayHandler.php b/classes/display/JSONDisplayHandler.php index cdea8d937..71d6a2b26 100644 --- a/classes/display/JSONDisplayHandler.php +++ b/classes/display/JSONDisplayHandler.php @@ -7,6 +7,7 @@ class JSONDisplayHandler { $variables['error'] = $oModule->getError(); $variables['message'] = $oModule->getMessage(); $json = preg_replace("(\r\n|\n)",'\n',json_encode2($variables)); + $json = preg_replace("\t",'\t',$json); return $json; } }