oops, remove useless db_escape_string() in article class (and nsfw plugin)

master
Andrew Dolgov 6 years ago
parent 560b9fdd26
commit ed1262d55a

@ -372,8 +372,7 @@ class Article extends Handler_Protected {
$ids = explode(",", clean($_REQUEST["ids"])); $ids = explode(",", clean($_REQUEST["ids"]));
$label_id = clean($_REQUEST["lid"]); $label_id = clean($_REQUEST["lid"]);
$label = db_escape_string(Labels::find_caption($label_id, $label = Labels::find_caption($label_id, $_SESSION["uid"]);
$_SESSION["uid"]));
$reply["info-for-headlines"] = array(); $reply["info-for-headlines"] = array();

@ -90,7 +90,7 @@ class NSFW extends Plugin {
} }
function save() { function save() {
$tags = explode(",", db_escape_string($_POST["tags"])); $tags = explode(",", $_POST["tags"]);
$tags = array_map("trim", $tags); $tags = array_map("trim", $tags);
$tags = array_map("mb_strtolower", $tags); $tags = array_map("mb_strtolower", $tags);
$tags = join(", ", $tags); $tags = join(", ", $tags);

Loading…
Cancel
Save