fix message about 'apps' directory

remotes/origin/stable4
Niko Ehrenfeuchter 2012-09-10 19:06:03 +07:00
parent 76ccd69cec
commit ae3ea39a4c
1 changed files with 1 additions and 1 deletions

@ -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;
}