rewrote php session variables

This commit is contained in:
SJ
2013-11-18 19:24:33 +01:00
parent 0809b5a514
commit 881a2380e0
39 changed files with 302 additions and 609 deletions

View File

@ -9,13 +9,15 @@ class ControllerCommonError extends Controller {
$this->template = "common/error.tpl";
$this->layout = "common/layout";
$session = Registry::get('session');
$this->document->title = $this->data['text_error'];
$this->data['errortitle'] = $this->data['text_error'];
if(isset($_SESSION['error'])){
$this->data['errorstring'] = $_SESSION['error'];
unset($_SESSION['error']);
if($session->get("error")) {
$this->data['errorstring'] = $session->get("error");
$session->set("error", "");
}
else {
$this->data['errorstring'] = "this is the errorstring";