[nsfw] Rewrite string condition to avoid warning message

- Address https://github.com/friendica/friendica/issues/13157#issuecomment-1567337197
pull/1393/head
Hypolite Petovan 2023-05-29 19:34:01 -04:00
parent 54f4a054c7
commit 9bfb5e879d
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;
}