diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-25 04:16:38 -0800 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-25 04:16:38 -0800 |
commit | 9ceae51091f31d9f33f9dff5c6b2d9faa1b6fe36 (patch) | |
tree | b6d571b69a341b1f3df6d7da17da8e7896bccfd5 /lib | |
parent | da82f7f5f357c531756a58441ffa2c22ba13a368 (diff) | |
parent | ebcb778a99e11c4c0f13ccd6bcdf11c2a0c21bc8 (diff) | |
download | nextcloud-server-9ceae51091f31d9f33f9dff5c6b2d9faa1b6fe36.tar.gz nextcloud-server-9ceae51091f31d9f33f9dff5c6b2d9faa1b6fe36.zip |
Merge pull request #1887 from owncloud/fixing-1843-master
remove the check for session data folder - causes trouble on some enviro...
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/util.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/util.php b/lib/util.php index 87facda1804..dd56e0308a2 100755 --- a/lib/util.php +++ b/lib/util.php @@ -275,19 +275,6 @@ class OC_Util { $web_server_restart= false; } - $handler = ini_get("session.save_handler"); - if($handler == "files") { - $tmpDir = session_save_path(); - if($tmpDir != "") { - if(!@is_writable($tmpDir)) { - $errors[]=array('error' => 'The temporary folder used by PHP to save the session data' - .' is either incorrect or not writable! Please check : '.session_save_path().'<br/>', - 'hint'=>'Please ask your server administrator to grant write access' - .' or define another temporary folder.'); - } - } - } - if($web_server_restart) { $errors[]=array('error'=>'PHP modules have been installed, but they are still listed as missing?<br/>', 'hint'=>'Please ask your server administrator to restart the web server.'); |