반응형

소스코드 (/lib/common.lib.php)



common.lib.php 파일만 수정해주면 해결됨.


function bad_tag_convert($code) 


아래 return preg_replace("/\<([\/]?)(script|iframe|form)([^\>]*)\>?/i", "&lt;$1$2$3&gt;", $code); 


에서 iframe| 를 삭제해주면 해결됩니다.


표시까지 잘되게 하려면, 492줄


  1. function conv_content($content, $html, $filter=true)


를 찾아서, global 밑에


$filter = false; 를 입력해주세요.

반응형
폰박사