class Controller_Lang extends Controller_Base {I call this with a DropDown like
public function action_change()
{
$actual_lang = Uri::segment(3);
Debug::dump($actual_lang); #die;
Config::set('language', $actual_lang);
Response::redirect('admin/users');
}
}
echo \Uri::base(false).'lang/change/de';When I dump
$actual_langit shows the correct value, but this is not stored in Config.
It looks like you're new here. If you want to get involved, click one of these buttons!