Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorNiko Ehrenfeuchter <mail@he1ix.org>2012-09-10 21:06:03 +0400
committerNiko Ehrenfeuchter <mail@he1ix.org>2012-09-10 21:06:03 +0400
commitae3ea39a4cf0ac83a6f4d2b167ca2dbb78b142a1 (patch)
tree17a8c79ec18d1f11541b8639f2dce378968b8538 /lib
parent76ccd69cec0cb608fd02df8f9eb0a25eb9055887 (diff)
fix message about 'apps' directory
Diffstat (limited to 'lib')
-rw-r--r--lib/util.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php
index 010aa1f7f09..0139d523346 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -31,7 +31,7 @@ class OC_Util {
// Check if apps folder is writable.
if(OC_Config::getValue('writable_appsdir', true) && !is_writable(OC::$SERVERROOT."/apps/")) {
$tmpl = new OC_Template( '', 'error', 'guest' );
- $tmpl->assign('errors',array(1=>array('error'=>"Can't write into apps directory 'apps'",'hint'=>"You can usually fix this by giving the webserver user write access to the config directory in owncloud")));
+ $tmpl->assign('errors',array(1=>array('error'=>"Can't write into apps directory 'apps'",'hint'=>"You can usually fix this by giving the webserver user write access to the apps directory in owncloud")));
$tmpl->printPage();
exit;
}