Index: trunk/core/kernel/utility/http_query.php =================================================================== diff -u -r3162 -r3165 --- trunk/core/kernel/utility/http_query.php (.../http_query.php) (revision 3162) +++ trunk/core/kernel/utility/http_query.php (.../http_query.php) (revision 3165) @@ -134,7 +134,17 @@ $this->processQueryString(); if( $this->Application->RewriteURLs() ) { - $this->processRewriteURL(); + if( $this->Application->isDebugMode() ) + { + $this->Application->Debugger->profileStart('url_parsing', 'Parsing MOD_REWRITE url'); + $this->processRewriteURL(); + $this->Application->Debugger->profileFinish('url_parsing'); + } + else + { + $this->processRewriteURL(); + } + } break;