KVE-2019-0789, 0821, 0860 취약점 수정

This commit is contained in:
thisgun
2019-05-29 12:01:25 +09:00
parent b1ac49a738
commit 630e39de16
4 changed files with 9 additions and 9 deletions

View File

@ -29,7 +29,7 @@ $feed_updated = date('Y-m-d\TH:i:s\+09:00', G5_SERVER_TIME);
$find = array('&', ' '); # 찾아서
$replace = array('&', ' '); # 바꾼다
$content = str_replace( $find, $replace, $write['wr_content'] );
$content = str_replace( $find, $replace, html_purifier($write['wr_content']) );
$summary = str_replace( $find, $replace, strip_tags($write['wr_content']) );
Header("Content-type: text/xml");