]> git.wh0rd.org - tt-rss.git/blobdiff - plugins/nsfw/init.php
oops, remove useless db_escape_string() in article class (and nsfw plugin)
[tt-rss.git] / plugins / nsfw / init.php
index 7a3265fa0ba7c4d766aeadd81140150357cc83d8..6a1ae3c65a23958c6a167ed43bb43603daa0b8e8 100644 (file)
@@ -90,7 +90,7 @@ class NSFW extends Plugin {
        }
 
        function save() {
-               $tags = explode(",", db_escape_string($_POST["tags"]));
+               $tags = explode(",", $_POST["tags"]);
                $tags = array_map("trim", $tags);
                $tags = array_map("mb_strtolower", $tags);
                $tags = join(", ", $tags);
@@ -104,5 +104,4 @@ class NSFW extends Plugin {
                return 2;
        }
 
-}
-?>
+}
\ No newline at end of file