From: Bart Visscher Date: Fri, 17 Feb 2012 20:42:56 +0000 (+0100) Subject: Spelling fix hint text X-Git-Tag: v4.0.0beta~201^2~45 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bd7227bb934c6d618c46eb818c8ce0f6ecb64e29;p=nextcloud-server.git Spelling fix hint text --- 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; }