jenssegers/codeigniter-hmvc-modules

hi jenssegers

Closed this issue · 1 comments

I use this codeigniter your extension
Found the session of flashdata not work
code:
$result=$this->data_mdl->edit_data($data,$edit_id);
$msg = $result > 0?'is ok!':'error';
$notify = $result > 0?'success':'error';
// $this->nsession->set_flashdata($notify, $msg);
// $this->nsession->keep_flashdata($notify);
$this->session->set_flashdata($notify, $msg);
$this->session->keep_flashdata($notify);
var_dump($this->session->all_userdata());

result:
array(7) {
["session_id"]=>
string(32) "774a709dff1073976144c8976902f1be"
["ip_address"]=>
string(9) "127.0.0.1"
["user_agent"]=>
string(72) "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0"
["last_activity"]=>
int(1393646597)
["user_data"]=>
string(0) ""
["flash:old:success"]=>
bool(false)
["flash:new:success"]=>
bool(false)
}

flash:old:success return FALSE
how to modify code?

This repository is no longer under active development.