diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-22 15:05:28 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-23 18:41:00 +0200 |
commit | 93b227d80309e28d900641bac9c568484826dae5 (patch) | |
tree | 2bd46dc4a50224e538f983e6aa24b97d9c1be0ef /lib/base.php | |
parent | 31bf24a1162444ed746c6dfba38e0a0a7d2a459b (diff) | |
download | nextcloud-server-93b227d80309e28d900641bac9c568484826dae5.tar.gz nextcloud-server-93b227d80309e28d900641bac9c568484826dae5.zip |
shorten wording on config directory errors
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index df57fe979f3..eaee8424651 100644 --- a/lib/base.php +++ b/lib/base.php @@ -173,7 +173,7 @@ class OC { and !is_writable(OC::$SERVERROOT . "/config/config.php")) { $defaults = new OC_Defaults(); OC_Template::printErrorPage( - "Can't write into config directory 'config'", + "Can't write into config directory!", 'This can usually be fixed by ' .'<a href="' . $defaults->getDocBaseUrl() . '/server/5.0/admin_manual/installation/installation_source.html#set-the-directory-permissions" target="_blank">giving the webserver write access to the config directory</a>.' ); @@ -826,3 +826,4 @@ if (!function_exists('get_temp_dir')) { } OC::init(); + |