From d17849a5cd498a982131b9d8a23db249c7534f7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Gaillard?= Date: Wed, 3 Apr 2013 13:39:44 +0200 Subject: [PATCH] // remove session check on installer - now it is useless --- install-dev/controllers/http/system.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/install-dev/controllers/http/system.php b/install-dev/controllers/http/system.php index dac6dc54a..4db6d3ce1 100644 --- a/install-dev/controllers/http/system.php +++ b/install-dev/controllers/http/system.php @@ -74,7 +74,6 @@ class InstallControllerHttpSystem extends InstallControllerHttp if (!isset($this->tests['optional'])) $this->tests['optional'] = $this->model_system->checkOptionalTests(); - $session_path = @ini_get('session.save_path'); // Generate display array $this->tests_render = array( 'required' => array( @@ -122,7 +121,6 @@ class InstallControllerHttpSystem extends InstallControllerHttp 'magicquotes' => $this->l('PHP magic quotes option is enabled'), 'dom' => $this->l('Dom extension is not loaded'), 'pdo_mysql' => $this->l('PDO MySQL extension is not loaded'), - 'sessions' => $this->l('Your PHP sessions path is not writable - check with your hosting provider:').' '.$session_path, ) ), ),