위젯생성 코드의 값에 = 값이 있을 경우 오동작하는 부분 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2922 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-11-05 04:06:50 +00:00
parent a09416ae77
commit 642ccc2de5

View file

@ -927,7 +927,7 @@
function _transWidget($matches) {
// IE에서는 태그의 특성중에서 " 를 빼어 버리는 경우가 있기에 정규표현식으로 추가해줌
$buff = $matches[0];
$buff = preg_replace('/([^=^"^ ]*)=([^"])([^=^ ]*)/i', '$1="$2$3"', $buff);
$buff = preg_replace_callback('/([^=^"^ ]*)=([^ ^>]*)/i', array($this, _fixQuotation), $buff);
$buff = str_replace("&","&",$buff);
$oXmlParser = new XmlParser();