diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-06-05 17:51:41 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-06-05 17:51:52 +0200 |
commit | 9d936976a9c89f183ad7258ac04e047d27900b5e (patch) | |
tree | e36e54a4bc1bd88dc317f800967d99e82a9137d1 /lib/util.php | |
parent | 57326ea1f87f9f2d2884fc87c556fec3c6bc378e (diff) | |
download | nextcloud-server-9d936976a9c89f183ad7258ac04e047d27900b5e.tar.gz nextcloud-server-9d936976a9c89f183ad7258ac04e047d27900b5e.zip |
Make check for writable apps dir configurable
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 9a1fb7ac370..7a9545e3659 100644 --- a/lib/util.php +++ b/lib/util.php @@ -31,7 +31,7 @@ class OC_Util { } // Check if apps folder is writable. - if(!is_writable(OC::$SERVERROOT."/apps/")) { + if(OC_Config::getValue('writable_appsdir', true) && !is_writable(OC::$SERVERROOT."/apps/")) { $tmpl = new OC_Template( '', 'error', 'guest' ); $tmpl->assign('errors',array(1=>array('error'=>"Can't write into apps directory 'apps'",'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud"))); $tmpl->printPage(); |