blockquote에 대해서는 ul, ol과 같은 동작을 하도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2588 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-09-13 03:17:47 +00:00
parent e4bd05cd9e
commit 6e7a807c45
2 changed files with 2 additions and 2 deletions

View file

@ -167,7 +167,7 @@
$content = $this->get('content');
// OL/LI 태그를 위한 치환 처리
$content = preg_replace('!<(ol|ul)>!is','<\\1 style="margin-left:40px;">',$content);
$content = preg_replace('!<(ol|ul|blockquote)>!is','<\\1 style="margin-left:40px;">',$content);
if($add_document_info) return sprintf('<!--BeforeDocument(%d,%d)-->%s<!--AfterDocument(%d,%d)-->', $this->document_srl, $this->get('member_srl'), $content, $this->document_srl, $this->get('member_srl'));