nsfw update to shared tags

This commit is contained in:
Friendika 2011-10-24 15:53:20 -07:00
parent 5d21b7256b
commit 94e8c206ec
2 changed files with 6 additions and 2 deletions

BIN
nsfw.tgz

Binary file not shown.

View File

@ -87,14 +87,18 @@ function nsfw_prepare_body(&$a,&$b) {
continue; continue;
} }
if(stristr($b,$word)) { if(stristr($b['html'],$word)) {
$found = true; $found = true;
break; break;
} }
if(stristr($b['item']['tag'], ']' . $word . '[' )) {
$found = true;
break;
}
} }
} }
if($found) { if($found) {
$rnd = random_string(8); $rnd = random_string(8);
$b = '<div id="nsfw-wrap-' . $rnd . '" class="fakelink" onclick=openClose(\'nsfw-' . $rnd . '\'); >' . t('NSFW - Click to open/close') . '</div><div id="nsfw-' . $rnd . '" style="display: none; " >' . $b . '</div>'; $b['html'] = '<div id="nsfw-wrap-' . $rnd . '" class="fakelink" onclick=openClose(\'nsfw-' . $rnd . '\'); >' . t('NSFW - Click to open/close') . '</div><div id="nsfw-' . $rnd . '" style="display: none; " >' . $b['html'] . '</div>';
} }
} }