diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-26 20:48:01 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-26 20:48:01 +0100 |
commit | 4a26d638673ab3745108dd4254f71777f76ea154 (patch) | |
tree | 383569846d5fa6f66181b2e8de7b1294c8bc24e1 /lib/base.php | |
parent | 7eec31567fd699f3fac10c5d5bb5311874b235f1 (diff) | |
download | nextcloud-server-4a26d638673ab3745108dd4254f71777f76ea154.tar.gz nextcloud-server-4a26d638673ab3745108dd4254f71777f76ea154.zip |
Fix using wrong quotes for breaking long lines
Fixes #1925
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/base.php b/lib/base.php index f9bb1bb11bf..9bdbf48d725 100644 --- a/lib/base.php +++ b/lib/base.php @@ -162,9 +162,9 @@ class OC { OC::$THIRDPARTYWEBROOT = rtrim(dirname(OC::$WEBROOT), '/'); OC::$THIRDPARTYROOT = rtrim(dirname(OC::$SERVERROOT), '/'); } else { - echo("3rdparty directory not found! Please put the ownCloud 3rdparty' + echo('3rdparty directory not found! Please put the ownCloud 3rdparty' .' folder in the ownCloud folder or the folder above.' - .' You can also configure the location in the config.php file."); + .' You can also configure the location in the config.php file.'); exit; } // search the apps folder @@ -188,8 +188,8 @@ class OC { } if (empty(OC::$APPSROOTS)) { - echo("apps directory not found! Please put the ownCloud apps folder in the ownCloud folder' - .' or the folder above. You can also configure the location in the config.php file."); + echo('apps directory not found! Please put the ownCloud apps folder in the ownCloud folder' + .' or the folder above. You can also configure the location in the config.php file.'); exit; } $paths = array(); @@ -214,8 +214,8 @@ class OC { $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(); |