openbsd-ports/www/owncloud/patches/patch-lib_util_php
2012-06-23 15:32:45 +00:00

13 lines
839 B
Plaintext

$OpenBSD: patch-lib_util_php,v 1.2 2012/06/23 15:32:45 ajacoutot Exp $
--- lib/util.php.orig Fri Jun 22 21:31:57 2012
+++ lib/util.php Sat Jun 23 17:29:48 2012
@@ -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;
}