--- fenglin/bbs/article_service_post.php 2025/10/10 12:15:02 1.9 +++ fenglin/bbs/article_service_post.php 2025/11/06 12:39:59 1.12 @@ -52,8 +52,9 @@ )); } - $r_title = check_badwords($title, "****"); - if ($title != $r_title) + $bw_count = 0; + $r_title = check_badwords($title, "****", $bw_count); + if ($bw_count > 0) { $result_set["return"]["code"] = -1; array_push($result_set["return"]["errorFields"], array( @@ -63,8 +64,9 @@ )); } - $r_content = check_badwords($content, "****"); - if ($content != $r_content) + $bw_count = 0; + $r_content = check_badwords($content, "****", $bw_count); + if ($bw_count > 0) { $result_set["return"]["code"] = -1; array_push($result_set["return"]["errorFields"], array( @@ -126,7 +128,7 @@ } // Calculate length of content - $length = str_length(LML($content, false, false, 1024)); + $length = str_length($content, true); // Initial variables $tid = 0;