From 115c30bdb4f4b89b51f2397981a15c8091a6e9c0 Mon Sep 17 00:00:00 2001 From: Brice Maron Date: Fri, 22 Jun 2012 13:57:54 +0200 Subject: [PATCH] Enhance hint about writable app directory --- lib/util.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 6cca418a1b..50955ebb87 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."); } }