From 62c5a9a6aada6eafa9d3b7fb3ee6f8161bb31636 Mon Sep 17 00:00:00 2001 From: haneul Date: Fri, 8 May 2009 06:25:01 +0000 Subject: [PATCH] =?UTF-8?q?editor=20component=20=EB=82=B4=EC=9A=A9=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=EC=8B=9C=20space=20=EA=B0=80=20=EC=9E=88?= =?UTF-8?q?=EB=8A=94=20=EA=B2=BD=EC=9A=B0=20=EB=B0=9C=EC=83=9D=ED=95=98?= =?UTF-8?q?=EB=8A=94=20=EB=AC=B8=EC=A0=9C=20=EC=88=98=EC=A0=95?= 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@6308 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/editor/editor.controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/editor/editor.controller.php b/modules/editor/editor.controller.php index 9139d0e0d..495bfe1b4 100644 --- a/modules/editor/editor.controller.php +++ b/modules/editor/editor.controller.php @@ -189,7 +189,7 @@ **/ function transEditorComponent($matches) { $script = sprintf(' %s editor_component=%s', $matches[1], $matches[2]); - $script = preg_replace_callback('/([^=^"^ ]*)=([^ ^>]*) /i', fixQuotation, $script); + $script = preg_replace_callback('/([^=^"^ ]*)=([^ ^>]*)/i', fixQuotation, $script); preg_match_all('/([a-z0-9\-\_]+)\=\"([^\"]+)\"/is', $script, $m); for($i=0,$c=count($m[0]);$i<$c;$i++) { $xml_obj->attrs->{$m[1][$i]} = $m[2][$i];