diff options
author | Brice Maron <brice@bmaron.net> | 2012-06-22 13:57:54 +0200 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2012-06-22 13:57:54 +0200 |
commit | 115c30bdb4f4b89b51f2397981a15c8091a6e9c0 (patch) | |
tree | c2ae3a0d7c9b69d85b61f1138dd6fcad93ad5eb8 /lib/util.php | |
parent | 8c2803a7c1d2b5d6b1d4bab5d36ebceb19324729 (diff) | |
download | nextcloud-server-115c30bdb4f4b89b51f2397981a15c8091a6e9c0.tar.gz nextcloud-server-115c30bdb4f4b89b51f2397981a15c8091a6e9c0.zip |
Enhance hint about writable app directory
Diffstat (limited to 'lib/util.php')
-rwxr-xr-x | lib/util.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 6cca418a1b5..50955ebb87f 100755 --- a/lib/util.php +++ b/lib/util.php @@ -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."); } } |