]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add back check if installed around background jobs
authorMichael Gapczynski <mtgap@owncloud.com>
Fri, 4 Jan 2013 19:16:59 +0000 (14:16 -0500)
committerMichael Gapczynski <mtgap@owncloud.com>
Fri, 4 Jan 2013 19:16:59 +0000 (14:16 -0500)
lib/base.php

index ec08ccc67be00207dbff381d10501a9ade1dd092..e6355013c737c344db41ea9cb0b642b2772c91c3 100644 (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');
+               }
        }
     }