mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-21 18:23:42 +00:00
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
This commit is contained in:
commit
941b8c5a14
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue