OC_Defaults is only used in error reporting
This commit is contained in:
parent
9f777fba98
commit
ce9436c051
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,6 @@ class Config {
|
|||
*/
|
||||
private function writeData() {
|
||||
// Create a php file ...
|
||||
$defaults = new \OC_Defaults;
|
||||
$content = "<?php\n";
|
||||
if ($this->debugMode) {
|
||||
$content .= "define('DEBUG',true);\n";
|
||||
|
@ -172,6 +171,7 @@ class Config {
|
|||
// Write the file
|
||||
$result = @file_put_contents($this->configFilename, $content);
|
||||
if (!$result) {
|
||||
$defaults = new \OC_Defaults;
|
||||
$url = $defaults->getDocBaseUrl() . '/server/5.0/admin_manual/installation/installation_source.html#set-the-directory-permissions';
|
||||
throw new HintException(
|
||||
"Can't write into config directory!",
|
||||
|
|
Loading…
Reference in a new issue