use central method for checking webserver user

remotes/origin/stable
Thomas Schmidt 14 years ago
parent 6636720d2d
commit 182333a781
  1. 2
      lib/config.php

@ -175,7 +175,7 @@ class OC_Config{
$result=@file_put_contents( OC::$SERVERROOT."/config/config.php", $content ); $result=@file_put_contents( OC::$SERVERROOT."/config/config.php", $content );
if(!$result) { if(!$result) {
$tmpl = new OC_Template( '', 'error', 'guest' ); $tmpl = new OC_Template( '', 'error', 'guest' );
$tmpl->assign('errors',array(1=>array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by setting the owner of 'config' to the user that the web server uses (".exec('whoami').")"))); $tmpl->assign('errors',array(1=>array('error'=>"Can't write into config directory 'config'",'hint'=>"You can usually fix this by setting the owner of 'config' to the user that the web server uses (".OC_Util::checkWebserverUser().")")));
$tmpl->printPage(); $tmpl->printPage();
exit; exit;
} }

Loading…
Cancel
Save