summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <BernhardPosselt@users.noreply.github.com>2016-05-23 15:13:10 +0200
committerBernhard Posselt <BernhardPosselt@users.noreply.github.com>2016-05-23 15:13:10 +0200
commit941275261330bcdb8419ea3b4bb4cc679be5423c (patch)
tree7b821bcf68e910eb9f060d7d42bcb61663a92bfb
parent1fb4c570b159476945eea710a6fb8f46bf5de849 (diff)
parenta0167a3f9250653c48048aa754d37072fec5e3ce (diff)
Merge pull request #999 from owncloud/autoloader-backgroundjob
Fix registering background job
-rw-r--r--config/appconfig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/appconfig.php b/config/appconfig.php
index 55c408c72..55dcd6d1a 100644
--- a/config/appconfig.php
+++ b/config/appconfig.php
@@ -84,7 +84,7 @@ class AppConfig {
$this->registerNavigation();
$this->registerHooks();
// IJob API is fucked up, so silence the code checker
- $class = '\OCP\Backgroundjob';
+ $class = '\OCP\BackgroundJob';
$class::addRegularTask($this->config['cron']['job'], 'run');
App::registerAdmin($this->config['id'], $this->config['admin']);
}