Index: core/kernel/utility/debugger/debugger.js IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- core/kernel/utility/debugger/debugger.js (revision 15965) +++ core/kernel/utility/debugger/debugger.js (revision ) @@ -217,7 +217,14 @@ } Debugger.prototype.AppendRow = function($html, $row_type) { - $row_type = $row_type || 'other'; + var $message_type = $row_type || 'other'; + + if ( $message_type == 'warning' || $message_type == 'notice' ) { + $row_type = 'error'; + } else { + $row_type = $message_type; + } + this.RowCount++; var $tr = document.createElement('TR'); this.DebuggerTable.appendChild($tr); @@ -226,7 +233,7 @@ if ( this.RowCount > 2 ) { $tr.setAttribute('data-row-type', $row_type); - if ( $row_type == 'error' ) { + if ( $message_type == 'error' ) { document.getElementById('debug_row_' + (this.RowCount -1 )).setAttribute('data-row-type', 'error'); } } \ No newline at end of file Index: core/kernel/utility/debugger/debugger.css IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- core/kernel/utility/debugger/debugger.css (revision 15965) +++ core/kernel/utility/debugger/debugger.css (revision ) @@ -132,6 +132,5 @@ padding: 0px; } -.dbg-error-row-hidden tr[data-row-type="error"], .dbg-warning-row-hidden tr[data-row-type="warning"], -.dbg-notice-row-hidden tr[data-row-type="notice"], .dbg-sql-row-hidden tr[data-row-type="sql"], +.dbg-error-row-hidden tr[data-row-type="error"], .dbg-sql-row-hidden tr[data-row-type="sql"], .dbg-other-row-hidden tr[data-row-type="other"] {display: none} \ No newline at end of file Index: core/kernel/utility/debugger.php IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- core/kernel/utility/debugger.php (revision 15965) +++ core/kernel/utility/debugger.php (revision ) @@ -234,7 +234,7 @@ */ private $_lastErrorProcessed = false; - private $_filterTypes = Array ('error', 'warning', 'notice', 'sql', 'other'); + private $_filterTypes = Array ('error', 'sql', 'other'); /** * Counts warnings on the page