My Kohana route wont work correctly
The route:
Route::set('admin', '((<lang>/)admin(/<controller>(/<action>(/<id>))))',
array(
'lang' => '(de|en)',
'id' => '.+'
))
->defaults(array(
'lang' => 'de',
'controller' => 'dashboard',
'action' => 'index',
'directory' => 'admin',
));
with the url "en/admin"
Request::current()->param( 'lang' );
returns "de" and not "en"
when i dont set the url default for "lang" the request returns "en-us", i didn't set i18n::lang()
thx for Help =)