git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3187 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-12-07 06:44:50 +00:00
parent cb60a769f2
commit 4d257fc37a

View file

@ -408,6 +408,9 @@
// script code 제거
$content = preg_replace("!<script(.*?)<\/script>!is","",$content);
// meta 태그 제거
$content = preg_replace("!<meta(.*?)>!is","",$content);
return $content;
}