fix nsfw for tag array

pull/141/merge
friendica 2013-07-08 17:41:48 -07:00
parent 3596e1d594
commit 26e302cdc3
2 changed files with 8 additions and 5 deletions

BIN
nsfw.tgz

Binary file not shown.

View File

@ -144,13 +144,16 @@ function nsfw_prepare_body(&$a,&$b) {
$found = true;
break;
}
if(stristr($b['item']['tags'], '>' . $word . '<' )) {
$found = true;
break;
if(is_array($b['item']['tags']) && count($b['item']['tags'])) {
foreach($b['item']['tags'] as $t) {
if(stristr($t, '>' . $word . '<' )) {
$found = true;
break;
}
}
}
}
}
}
}
if($found) {
$rnd = random_string(8);