From 53e318dc05a67846e31cfa416e0c149a77d4324e Mon Sep 17 00:00:00 2001 From: czaks Date: Sun, 4 Aug 2013 22:49:38 -0400 Subject: [PATCH] fix for boards containing + character; they were previously unaccessible in mod panel --- mod.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod.php b/mod.php index a01a0297..be66db78 100644 --- a/mod.php +++ b/mod.php @@ -18,7 +18,7 @@ if (get_magic_quotes_gpc()) { $_POST = strip_array($_POST); } -$query = isset($_SERVER['QUERY_STRING']) ? urldecode($_SERVER['QUERY_STRING']) : ''; +$query = isset($_SERVER['QUERY_STRING']) ? rawurldecode($_SERVER['QUERY_STRING']) : ''; $pages = array( '' => ':?/', // redirect to dashboard