Fixed lifetime of cookie and language-loading

pull/2361/head
int2001 2023-08-02 06:37:56 +00:00
rodzic c8ea174030
commit 5d98554999
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DFB1C13CD2DB037B
1 zmienionych plików z 10 dodań i 11 usunięć

Wyświetl plik

@ -6,13 +6,12 @@ class User extends CI_Controller {
{
parent::__construct();
// Load language files
// $this->lang->load(array(
// 'account',
// 'lotw',
// 'eqsl',
// 'admin',
// ));
$this->lang->load(array(
'account',
'lotw',
'eqsl',
'admin',
));
}
public function index()
@ -479,8 +478,8 @@ class User extends CI_Controller {
'name' => 'language',
'value' => $this->input->post('language', true),
'expire' => time()+1000
// 'secure' => TRUE
'expire' => time()+1000,
'secure' => FALSE
);
$this->input->set_cookie($cookie);
@ -610,8 +609,8 @@ class User extends CI_Controller {
'name' => 'language',
'value' => $data['user']->language,
'expire' => '9999',
'secure' => TRUE
'expire' => time()+1000,
'secure' => FALSE
);
$this->input->set_cookie($cookie);