]> source.dussan.org Git - nextcloud-server.git/commitdiff
Enhance hint about writable app directory
authorBrice Maron <brice@bmaron.net>
Fri, 22 Jun 2012 11:57:54 +0000 (13:57 +0200)
committerBrice Maron <brice@bmaron.net>
Fri, 22 Jun 2012 11:57:54 +0000 (13:57 +0200)
lib/util.php

index 6cca418a1b50a150dca7b7b744f6e74830f465d3..50955ebb87ffadcf808f3a27f8e9663a4aa825fa 100755 (executable)
@@ -203,7 +203,8 @@ class OC_Util {
                // Check if there is a writable install folder.
                if(OC_Config::getValue('appstoreenabled', true)) {
                        if( OC_App::getInstallPath() === null  || !is_writable(OC_App::getInstallPath())) {
-                               $errors[]=array('error'=>"Can't write into apps directory",'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud");
+                               $errors[]=array('error'=>"Can't write into apps directory",'hint'=>"You can usually fix this by giving the webserver user write access to the apps directory 
+                               in owncloud or disabling the appstore in the config file.");
                        }
                }