From 7b72b7ae92a3ad8a6eef56d3169a68f6e86b324c Mon Sep 17 00:00:00 2001 From: http <http@jenny.fritz.box> Date: Sat, 23 May 2015 16:59:28 +0200 Subject: [PATCH] =?UTF-8?q?ConfigurationComponent=20cached=20f=C3=BCr=20de?= =?UTF-8?q?bug=20erstmal=20nicht=20mehr=20in=20der=20session?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Controller/Component/ConfigurationComponent.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Controller/Component/ConfigurationComponent.php b/src/Controller/Component/ConfigurationComponent.php index 98f7059..bb1ea53 100644 --- a/src/Controller/Component/ConfigurationComponent.php +++ b/src/Controller/Component/ConfigurationComponent.php @@ -22,13 +22,13 @@ return FALSE; } // load data from session or reload data to session? - if ($this->session->check($session_key)) { +// if ($this->session->check($session_key)) { // return configuration - return $this->session->read($session_key); - } else { +// return $this->session->read($session_key); +// } else { // reload configuration return $this->getReloadedConfiguration($session_key, $config_name, $config_type); - } +// } } public function getReloadedConfiguration($session_key, $config_name = '', $config_type = 'panel') { -- GitLab