Index: trunk/core/kernel/application.php =================================================================== diff -u -r3064 -r3066 --- trunk/core/kernel/application.php (.../application.php) (revision 3064) +++ trunk/core/kernel/application.php (.../application.php) (revision 3066) @@ -876,7 +876,15 @@ if( $this->isDebugMode() && dbg_ConstOn('DBG_REDIRECT') ) { - $GLOBALS['debugger']->appendTrace(); + /*if( function_exists('apache_response_headers') ) + { + $this->Debugger->appendHTML('Apache Responce Headers'); + $this->Debugger->dumpVars( apache_response_headers() ); + + $this->Debugger->appendHTML('Apache Request Headers'); + $this->Debugger->dumpVars( apache_request_headers() ); + }*/ + $this->Debugger->appendTrace(); echo "Debug output above!!! Proceed to redirect: $a_location
"; } else