Index: trunk/kernel/include/debugger.php =================================================================== diff -u -r2989 -r3066 --- trunk/kernel/include/debugger.php (.../debugger.php) (revision 2989) +++ trunk/kernel/include/debugger.php (.../debugger.php) (revision 3066) @@ -291,9 +291,9 @@ { 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); + $string = str_replace( Array('_no_match_string_', '_n_m_s_'), Array('\\', '/'), $string); return preg_replace('/<\?(.*)php (.*)\?>/s','$2',$string); } else