]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix bug
authorJakob Sack <mail@jakobsack.de>
Sat, 27 Oct 2012 08:23:36 +0000 (10:23 +0200)
committerJakob Sack <mail@jakobsack.de>
Sat, 27 Oct 2012 08:23:36 +0000 (10:23 +0200)
cron.php

index a351572fcda2663ed5a4d052464473de35be001b..fb76c2de4288624c02d8948c9e865eb455316c54 100644 (file)
--- a/cron.php
+++ b/cron.php
@@ -57,7 +57,7 @@ if( !OC_Config::getValue( 'installed', false )) {
 register_shutdown_function('handleUnexpectedShutdown');
 
 // Exit if background jobs are disabled!
-$appmode = OC_BackgroundJob::getType();
+$appmode = OC_BackgroundJob::getExecutionType();
 if( $appmode == 'none' ) {
        my_temporary_cron_class::$sent = true;
        if( OC::$CLI ) {
@@ -76,7 +76,7 @@ if( OC::$CLI ) {
        // We call ownCloud from the CLI (aka cron)
        if( $appmode != 'cron' ) {
                // Use cron in feature!
-               OC_BackgroundJob::setType('cron' );
+               OC_BackgroundJob::setExecutionType('cron' );
        }
 
        // check if backgroundjobs is still running