]> git.mxchange.org Git - friendica-addons.git/commitdiff
nsfw update to shared tags
authorFriendika <info@friendika.com>
Mon, 24 Oct 2011 22:53:20 +0000 (15:53 -0700)
committerFriendika <info@friendika.com>
Mon, 24 Oct 2011 22:53:20 +0000 (15:53 -0700)
nsfw.tgz
nsfw/nsfw.php

index e7c959e8e692ac13a7746ea7aacf794887483e6d..fddda657aaa92996ec7b3b0f498e661c9d555fb6 100644 (file)
Binary files a/nsfw.tgz and b/nsfw.tgz differ
index dba9f1e85e161724d751f54ef08cf4a6a2ee6c54..22d65d052726ae4494fc58ce4b9c253e892e0466 100644 (file)
@@ -87,14 +87,18 @@ function nsfw_prepare_body(&$a,&$b) {
                                continue;
                        }
 
-                       if(stristr($b,$word)) {
+                       if(stristr($b['html'],$word)) {
                                $found = true;
                                break;
                        }
+                       if(stristr($b['item']['tag'], ']' . $word . '[' )) {
+                               $found = true;
+                               break;
+                       } 
                }
        }
        if($found) {
                $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>';  
        }
 }