Merge branch 'g5'

This commit is contained in:
chicpro
2014-03-28 16:17:00 +09:00
6 changed files with 103 additions and 11 deletions

View File

@ -510,7 +510,7 @@ function conv_subject($subject, $len, $suffix='')
}
// 내용을 변환
function conv_content($content, $html)
function conv_content($content, $html, $filter=true)
{
global $config, $board;
@ -536,7 +536,9 @@ function conv_content($content, $html)
}
$content = preg_replace($source, $target, $content);
$content = html_purifier($content);
if($filter)
$content = html_purifier($content);
}
else // text 이면
{