Merge pull request '[nsfw] Rewrite string condition to avoid warning message' (#1393) from MrPetovan/friendica-addons:bug/warnings into develop

Reviewed-on: https://git.friendi.ca/friendica/friendica-addons/pulls/1393
pull/1395/head
Tobias Diekershoff 2023-05-30 07:20:35 +02:00
commit 941b8c5a14
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ function nsfw_addon_settings_post(array &$b)
$word_list = explode(',', $words);
foreach ($word_list as $word) {
$word = trim($word);
if (!$words || $word[0] != '/') {
if (!$words || strpos($word, '/') !== 0) {
continue;
}