diff options
author | Frank Karlitschek <karlitschek@kde.org> | 2011-10-22 19:39:05 +0200 |
---|---|---|
committer | Frank Karlitschek <karlitschek@kde.org> | 2011-10-22 19:39:05 +0200 |
commit | 3acea2f574fc5f243a3d73e05837a7fb72ec95e6 (patch) | |
tree | 764669b620e8b5a1552f1918b59a465f57542deb /lib/config.php | |
parent | 045c42aa99d3f7ad45434ab371828853f3378968 (diff) | |
download | nextcloud-server-3acea2f574fc5f243a3d73e05837a7fb72ec95e6.tar.gz nextcloud-server-3acea2f574fc5f243a3d73e05837a7fb72ec95e6.zip |
change the error hint from suggesting to change the owner of a directory to changing the permissions. changing the owner of a director is not possible via ftp.
Diffstat (limited to 'lib/config.php')
-rw-r--r-- | lib/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/config.php b/lib/config.php index 3aa69327f56..2c82036257f 100644 --- a/lib/config.php +++ b/lib/config.php @@ -175,7 +175,7 @@ class OC_Config{ $result=@file_put_contents( OC::$SERVERROOT."/config/config.php", $content ); if(!$result) { $tmpl = new OC_Template( '', 'error', 'guest' ); - $tmpl->assign('errors',array(1=>array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by setting the owner of 'config' to the user that the web server uses (".OC_Util::checkWebserverUser().")"))); + $tmpl->assign('errors',array(1=>array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by giving the webserver use write access to the config directory in owncloud"))); $tmpl->printPage(); exit; } |