Fix #775 스팸필터에서 오류내역으로 스팸키워드노출 여부를 설정

This commit is contained in:
BJRambo 2017-08-04 18:25:37 +09:00
parent 04ab022864
commit ced76f7e50
6 changed files with 70 additions and 12 deletions

View file

@ -55,7 +55,10 @@ class spamfilterController extends spamfilter
}
$text = utf8_trim(utf8_normalize_spaces(htmlspecialchars_decode(strip_tags($text))));
$output = $oFilterModel->isDeniedWord($text);
if(!$output->toBool()) return $output;
if(!$output->toBool())
{
return $output;
}
// Check the specified time beside the modificaiton time
if($obj->document_srl == 0)
{