Add back check if installed around background jobs

This commit is contained in:
Michael Gapczynski 2013-01-04 14:16:59 -05:00
parent ceafb5d7d1
commit f2e6df807d
1 changed files with 4 additions and 2 deletions

View File

@ -480,8 +480,10 @@ class OC
if (OC_Util::issetlocaleworking() == false) {
OC_Log::write('core', 'setting locate to en_US.UTF-8 failed. Support is probably not installed on your system', OC_Log::ERROR);
}
if (OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax') == 'ajax') {
OC_Util::addScript('backgroundjobs');
if (OC_Config::getValue('installed', false)) {
if (OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax') == 'ajax') {
OC_Util::addScript('backgroundjobs');
}
}
}