Commit c6afd633 authored by Soldatoff's avatar Soldatoff

Добавил строгую проверку на стоп-слова

parent 2de5c58f
......@@ -77,6 +77,20 @@ if (!isset($mas_url['host'])) {
return;
}
/* Проверка на стоп слова */
$i = 0;
$stopwords = explode("\r\n", (file_get_contents("stopwords.txt")));
foreach ($stopwords as $word){
$pos = in_array($word, $userdata, true);
if ($pos !== false){
$i++;
}
}
if($i>0){
$error = "«Никакое гнилое слово да не исходит из уст ваших, а только доброе для назидания в вере, дабы оно доставляло благодать слушающим.» (Еф.4:29)";
echoJsonData(array('success' => 'false', 'message' => $error));
return false;
}
/* * ********************************
* Основная часть работы:
......
This diff is collapsed. Click to expand it.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment