From fe0e980b0cc80ae0a42ed8479cf20be36636110c Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Fri, 8 Nov 2013 10:27:10 +0100 Subject: Fix issue #235: annule le cache après connexion réussie MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controllers/indexController.php | 1 + 1 file changed, 1 insertion(+) (limited to 'app/controllers/indexController.php') diff --git a/app/controllers/indexController.php b/app/controllers/indexController.php index 76fd2cc75..98fb4e903 100755 --- a/app/controllers/indexController.php +++ b/app/controllers/indexController.php @@ -209,6 +209,7 @@ class indexController extends ActionController { $res = json_decode ($result, true); if ($res['status'] == 'okay' && $res['email'] == $this->view->conf->mailLogin ()) { Session::_param ('mail', $res['email']); + touch(PUBLIC_PATH . '/data/touch.txt'); } else { $res = array (); $res['status'] = 'failure'; -- cgit v1.2.3