diff --git a/bbs/search.php b/bbs/search.php index ae1a6d8fb..97662e56a 100644 --- a/bbs/search.php +++ b/bbs/search.php @@ -11,7 +11,7 @@ $text_stx = ""; $srows = 0; $stx = strip_tags($stx); -$stx = preg_replace('/[[:punct:]]/', '', $stx); // 특수문자 제거 +$stx = preg_replace('/[[:punct:]]/u', '', $stx); // 특수문자 제거 if ($stx) { $stx = preg_replace('/\//', '\/', trim($stx)); $sop = strtolower($sop);