From a42c55f02b7e313ab61bf826794d0888f2dceae1 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 17 Apr 2013 18:34:18 +0400 Subject: fix blank character after opening bracket in function calls --- plugins/nsfw/init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/nsfw') diff --git a/plugins/nsfw/init.php b/plugins/nsfw/init.php index 92b5f65b2..c4182731d 100644 --- a/plugins/nsfw/init.php +++ b/plugins/nsfw/init.php @@ -88,7 +88,7 @@ class NSFW extends Plugin { } function save() { - $tags = explode(",", db_escape_string( $_POST["tags"])); + $tags = explode(",", db_escape_string($_POST["tags"])); $tags = array_map("trim", $tags); $tags = array_map("mb_strtolower", $tags); $tags = join(", ", $tags); -- cgit v1.2.3-54-g00ecf