Index: branches/5.2.x/core/kernel/utility/debugger.php =================================================================== diff -u -N -r16436 -r16438 --- branches/5.2.x/core/kernel/utility/debugger.php (.../debugger.php) (revision 16436) +++ branches/5.2.x/core/kernel/utility/debugger.php (.../debugger.php) (revision 16438) @@ -1,6 +1,6 @@ editorUrlData['url'] = $components['scheme'] . '://' . $components['host'] . $components['path']; + $this->editorUrlData['url'] = $components['scheme'] . '://' . $components['host']; + if ( isset($components['path']) ) { + $this->editorUrlData['url'] .= $components['path']; + } + if ( isset($components['query']) ) { parse_str(html_entity_decode($components['query']), $this->editorUrlData['params']); } Index: branches/5.2.x/index.php =================================================================== diff -u -N -r16437 -r16438 --- branches/5.2.x/index.php (.../index.php) (revision 16437) +++ branches/5.2.x/index.php (.../index.php) (revision 16438) @@ -1,6 +1,6 @@