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 =)

link|improve this question
may be you have changes in system classes like Request or Route? Like this: kerkness.ca/wiki/… – biakaveron Mar 21 '11 at 7:47
feedback

1 Answer

I18n::lang() is called in bootstrap, setting the default to en-us.

Your request is returning "de" because it's the default you've set, you should try defining the route pattern like this:

'((<lang>)(/)admin(/<controller>(/<action>(/<id>))))'
link|improve this answer
thank you for the answer - but still same problem. with previous version of kohana the route worked correctly. :( – moriartie Mar 18 '11 at 17:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.