summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-11-03 13:53:59 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2014-11-03 13:53:59 +0100
commit136b0c22c929ebad933c433c1689977b916d1fe0 (patch)
treec5b7d7e1602d1d4d54dcacf6add99ab723a78ffe /core
parenta4f0483f56e7e77fe64ce34f56297c32793acad6 (diff)
downloadnextcloud-server-136b0c22c929ebad933c433c1689977b916d1fe0.tar.gz
nextcloud-server-136b0c22c929ebad933c433c1689977b916d1fe0.zip
Fix ctor call in OC\Core\Command\Upgrade
Diffstat (limited to 'core')
-rw-r--r--core/command/upgrade.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/command/upgrade.php b/core/command/upgrade.php
index 5b9432d631b..aaeb63a3124 100644
--- a/core/command/upgrade.php
+++ b/core/command/upgrade.php
@@ -34,6 +34,7 @@ class Upgrade extends Command {
* @param IConfig $config
*/
public function __construct(IConfig $config) {
+ parent::__construct();
$this->config = $config;
}