This shows in the breadcrumb and module title not visible in the module.
The cause for this is the var `query` in class.admintheme.inc.php is not urldecoded. This is necessary because POST vars are automatticaly urlencoded.
Simple solution is to change line 121 of this file to:
Code: Select all
$this->query = (isset($_SERVER['QUERY_STRING'])?urldecode($_SERVER['QUERY_STRING']):'');