]> 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 f10881ba5f56ce0d9166f1b8d979cc67f7cd6276..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);