aboutsummaryrefslogtreecommitdiffstats
path: root/lib/config.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-02-26 20:48:01 +0100
committerBart Visscher <bartv@thisnet.nl>2013-02-26 20:48:01 +0100
commit4a26d638673ab3745108dd4254f71777f76ea154 (patch)
tree383569846d5fa6f66181b2e8de7b1294c8bc24e1 /lib/config.php
parent7eec31567fd699f3fac10c5d5bb5311874b235f1 (diff)
downloadnextcloud-server-4a26d638673ab3745108dd4254f71777f76ea154.tar.gz
nextcloud-server-4a26d638673ab3745108dd4254f71777f76ea154.zip
Fix using wrong quotes for breaking long lines
Fixes #1925
Diffstat (limited to 'lib/config.php')
-rw-r--r--lib/config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/config.php b/lib/config.php
index a5c11b466f7..0bd497b8e50 100644
--- a/lib/config.php
+++ b/lib/config.php
@@ -166,8 +166,8 @@ class OC_Config{
$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 user write access'
- .' to the config directory in owncloud")));
+ 'hint'=>'You can usually fix this by giving the webserver user write access'
+ .' to the config directory in owncloud')));
$tmpl->printPage();
exit;
}