Skip to content

Commit

Permalink
php-style-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mmattel committed Feb 15, 2019
1 parent 1851fcd commit 4b4514a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/private/Setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -388,22 +388,21 @@ public function install($options) {

// add the key only if it does not exist (protect against overwriting)
if ($apps2Key === false) {

$defaultAppsPaths = [
'apps_paths' => [
[
"path" => \OC::$SERVERROOT . '/apps',
"url" => "/apps",
"writable" => false
],
[
[
"path" => \OC::$SERVERROOT . '/apps-external',
"url" => "/apps-external",
"writable" => true
]
]
];
$config->setSystemValues($defaultAppsPaths);
}

Expand All @@ -416,7 +415,6 @@ public function install($options) {
$config->setSystemValue('installed', true);

// finished initial setup

}

return $error;
Expand Down

0 comments on commit 4b4514a

Please sign in to comment.