Index: branches/RC/core/kernel/utility/debugger/debugger.js =================================================================== diff -u -r10577 -r10713 --- branches/RC/core/kernel/utility/debugger/debugger.js (.../debugger.js) (revision 10577) +++ branches/RC/core/kernel/utility/debugger/debugger.js (.../debugger.js) (revision 10713) @@ -164,10 +164,12 @@ Debugger.prototype.Clear = function() { if (!this.IsQueried) return false; - this.IsQueried = false; while (this.DebuggerTable.rows.length) { this.RemoveRow(0); } + + this.Toggle(27); + this.IsQueried = false; } Debugger.prototype.KeyDown = function($e) { Index: branches/RC/core/kernel/utility/debugger.php =================================================================== diff -u -r10662 -r10713 --- branches/RC/core/kernel/utility/debugger.php (.../debugger.php) (revision 10662) +++ branches/RC/core/kernel/utility/debugger.php (.../debugger.php) (revision 10713) @@ -1024,7 +1024,7 @@ $this->appendSession(); // show php session if any // ensure, that 1st line of debug output always is this one: - $top_line = '
[Reload Frame] [Hide Debugger][Current Time: '.date('H:i:s').'] [File Size: #DBG_FILESIZE#]
'; + $top_line = '
[Reload Frame] [Hide Debugger] [Clear Debugger][Current Time: '.date('H:i:s').'] [File Size: #DBG_FILESIZE#]
'; $this->appendHTML($top_line); $this->moveToBegin(1);