Browse Source

Merge pull request #60 from cekdahl/master

Fix issue with messages
develop v2.3.2
Emre Akay 10 years ago
parent
commit
902a24854e
  1. 23
      application/libraries/Aauth.php

23
application/libraries/Aauth.php

@ -111,8 +111,8 @@ class Aauth {
$this->aauth_db = $this->CI->load->database($this->config_vars['db_profile'], TRUE); $this->aauth_db = $this->CI->load->database($this->config_vars['db_profile'], TRUE);
// load error and info messages from flashdata (but don't store back in flashdata) // load error and info messages from flashdata (but don't store back in flashdata)
$this->errors = $this->CI->session->flashdata('errors'); $this->errors = $this->CI->session->flashdata('errors') ?: array();
$this->infos = $this->CI->session->flashdata('infos'); $this->infos = $this->CI->session->flashdata('infos') ?: array();
} }
@ -1867,15 +1867,7 @@ class Aauth {
*/ */
public function get_errors_array() public function get_errors_array()
{ {
return $this->errors;
if (!count($this->errors)==0)
{
return $this->errors;
}
else
{
return array();
}
} }
/** /**
@ -1962,14 +1954,7 @@ class Aauth {
*/ */
public function get_infos_array() public function get_infos_array()
{ {
if (!count($this->infos)==0) return $this->infos;
{
return $this->infos;
}
else
{
return array();
}
} }

Loading…
Cancel
Save