Index: trunk/core/kernel/utility/http_query.php =================================================================== diff -u -r1560 -r2183 --- trunk/core/kernel/utility/http_query.php (.../http_query.php) (revision 1560) +++ trunk/core/kernel/utility/http_query.php (.../http_query.php) (revision 2183) @@ -276,9 +276,9 @@ } // Save Template Name - $t=$this->getTemplateName( $t ); + $t=$this->getTemplateName( trim($t, '/') ); if(!$t) $t='index'; - $this->Set('t',$t); + $this->Set('t', trim($t, '/') ); } else { // Save Session ID @@ -288,7 +288,7 @@ // Save Template Name $t=$this->getTemplateName( array_shift($parts) ); if(!$t) $t='index'; - $this->Set('t',$t); + $this->Set('t', trim($t, '/') ); } if($parts)