fix for boards containing + character; they were previously unaccessible in mod panel
This commit is contained in:
parent
8ad36a851c
commit
53e318dc05
2
mod.php
2
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
|
||||
|
Loading…
Reference in New Issue
Block a user