Welcome Guest, Not a member yet? Register   Sign In
Unable to load language files
#2

(This post was last modified: 02-09-2016, 03:12 PM by siburny.)

What happens is $this->lang->load('hebrew','hebrew'); only loads language for a current request only. So after you do a "redirect", it loses loaded language and loads default language again.

What you have to do is also load language in your other controllers like this:
PHP Code:
if($lang $this->session->userdata('lang_load'))
{
 
   $this->lang->load($lang,$lang);

Reply


Messages In This Thread
Unable to load language files - by eyal - 02-09-2016, 02:57 AM
RE: Unable to load language files - by siburny - 02-09-2016, 03:12 PM
RE: Unable to load language files - by mwhitney - 02-15-2016, 12:36 PM



Theme © iAndrew 2016 - Forum software by © MyBB