Skip to content

Commit

Permalink
Merge pull request #11 from ne704/typos
Browse files Browse the repository at this point in the history
fix message about 'apps' directory
  • Loading branch information
LukasReschke committed Sep 10, 2012
2 parents 943a9a2 + ae3ea39 commit d050e6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static function setupFS( $user = "", $root = "files" ){ // configure the
// 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;
}
Expand Down

0 comments on commit d050e6e

Please sign in to comment.