summaryrefslogtreecommitdiffstats
path: root/lib/util.php
diff options
context:
space:
mode:
authorBrice Maron <brice@bmaron.net>2012-06-22 13:57:54 +0200
committerBrice Maron <brice@bmaron.net>2012-06-22 13:57:54 +0200
commit115c30bdb4f4b89b51f2397981a15c8091a6e9c0 (patch)
treec2ae3a0d7c9b69d85b61f1138dd6fcad93ad5eb8 /lib/util.php
parent8c2803a7c1d2b5d6b1d4bab5d36ebceb19324729 (diff)
downloadnextcloud-server-115c30bdb4f4b89b51f2397981a15c8091a6e9c0.tar.gz
nextcloud-server-115c30bdb4f4b89b51f2397981a15c8091a6e9c0.zip
Enhance hint about writable app directory
Diffstat (limited to 'lib/util.php')
-rwxr-xr-xlib/util.php3
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.");
}
}