From e31e4ae0183a9f90c045241c3bc474b33c9d86dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Gaillard?= Date: Fri, 29 Mar 2013 15:48:46 +0100 Subject: [PATCH] [-] Installer: Switch test of session.save_path to optional test --- classes/ConfigurationTest.php | 2 +- install-dev/controllers/http/system.php | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/classes/ConfigurationTest.php b/classes/ConfigurationTest.php index 322d7f4a8..b926f1366 100644 --- a/classes/ConfigurationTest.php +++ b/classes/ConfigurationTest.php @@ -320,4 +320,4 @@ class ConfigurationTestCore { return extension_loaded('Dom'); } -} +} \ No newline at end of file diff --git a/install-dev/controllers/http/system.php b/install-dev/controllers/http/system.php index 84f652d64..dac6dc54a 100644 --- a/install-dev/controllers/http/system.php +++ b/install-dev/controllers/http/system.php @@ -87,7 +87,6 @@ class InstallControllerHttpSystem extends InstallControllerHttp 'system' => $this->l('Cannot create new files and folders'), 'gd' => $this->l('GD Library is not installed'), 'mysql_support' => $this->l('MySQL support is not activated'), - 'sessions' => $this->l('Your PHP sessions path is not writable - check with your hosting provider:').' '.$session_path, ) ), array( @@ -123,6 +122,7 @@ 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, ) ), ), @@ -139,5 +139,4 @@ class InstallControllerHttpSystem extends InstallControllerHttp $this->displayTemplate('system'); } -} - +} \ No newline at end of file