Browse Source

updated Libraries/Aauth.php

v3-dev
REJack 6 years ago
parent
commit
73386550f9
No known key found for this signature in database
GPG Key ID: 4A44B48700429F46
  1. 12
      application/Libraries/Aauth.php

12
application/Libraries/Aauth.php

@ -888,8 +888,7 @@ class Aauth
$this->flashErrors[] = $message; $this->flashErrors[] = $message;
} }
$this->session->set('errors', $this->flashErrors); $this->session->setFlashdata('errors', $this->flashErrors);
$this->session->setFlashdata('errors');
} }
} }
@ -913,8 +912,7 @@ class Aauth
} }
$this->flashErrors = array_merge($this->flashErrors, (array)$this->session->getFlashdata('errors')); $this->flashErrors = array_merge($this->flashErrors, (array)$this->session->getFlashdata('errors'));
$this->session->set('errors', $this->flashErrors); $this->session->setFlashdata('errors', $this->flashErrors);
$this->session->setFlashdata('errors');
} }
/** /**
@ -1000,8 +998,7 @@ class Aauth
$this->flashInfos[] = $message; $this->flashInfos[] = $message;
} }
$this->session->set('infos', $this->flashInfos); $this->session->setFlashdata('infos', $this->flashInfos);
$this->session->setFlashdata('infos');
} }
} }
@ -1025,8 +1022,7 @@ class Aauth
} }
$this->flashInfos = array_merge($this->flashInfos, (array)$this->session->getFlashdata('infos')); $this->flashInfos = array_merge($this->flashInfos, (array)$this->session->getFlashdata('infos'));
$this->session->set('infos', $this->flashInfos); $this->session->setFlashdata('infos', $this->flashInfos);
$this->session->setFlashdata('infos');
} }
/** /**

Loading…
Cancel
Save