summaryrefslogtreecommitdiffstats
path: root/lib/config.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-02-17 21:42:56 +0100
committerBart Visscher <bartv@thisnet.nl>2012-02-17 22:10:02 +0100
commitbd7227bb934c6d618c46eb818c8ce0f6ecb64e29 (patch)
tree5f83758f89945ec1ced9b50cc50d08556af55ef5 /lib/config.php
parent6bbd67c3c693ab3cc440be7342b3cc8b88806a18 (diff)
downloadnextcloud-server-bd7227bb934c6d618c46eb818c8ce0f6ecb64e29.tar.gz
nextcloud-server-bd7227bb934c6d618c46eb818c8ce0f6ecb64e29.zip
Spelling fix hint text
Diffstat (limited to 'lib/config.php')
-rw-r--r--lib/config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/config.php b/lib/config.php
index 8d03271b3ea..ad1cd18fa15 100644
--- a/lib/config.php
+++ b/lib/config.php
@@ -174,7 +174,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 giving the webserver use write access to the config directory in owncloud")));
+ $tmpl->assign('errors',array(1=>array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud")));
$tmpl->printPage();
exit;
}