mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 11:45:56 +00:00
oops, remove useless db_escape_string() in article class (and nsfw plugin)
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user