Index: trunk/core/kernel/utility/debugger.php =================================================================== diff -u -r2989 -r3066 --- trunk/core/kernel/utility/debugger.php (.../debugger.php) (revision 2989) +++ trunk/core/kernel/utility/debugger.php (.../debugger.php) (revision 3066) @@ -291,10 +291,10 @@ { if( dbg_ConstOn('DBG_USE_HIGHLIGHT') ) { - $string = str_replace('\\','_no_match_string_',$string); + $string = str_replace( Array('\\', '/') , Array('_no_match_string_', '_n_m_s_'), $string); $string = highlight_string('', true); - $string = str_replace('_no_match_string_','\\',$string); - return preg_replace('/<\?(.*)php (.*)\?>/s','$2',$string); + $string = str_replace( Array('_no_match_string_', '_n_m_s_'), Array('\\', '/'), $string); + return preg_replace('/<\?(.*)php (.*)\?>/s', '$2', $string); } else {