BackgroundJobs: fix bug

This commit is contained in:
Jakob Sack 2012-08-09 22:07:18 +02:00
parent 2b5f005547
commit a6a1f892f0
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ class OC_BackgroundJob_Worker{
// search for next background job
foreach( $regular_tasks as $key => $value ){
if( strcmp( $lasttask, $key ) > 0 ){
OC_Appconfig::getValue( 'core', 'backgroundjobs_task', $key );
if( strcmp( $key, $lasttask ) > 0 ){
OC_Appconfig::setValue( 'core', 'backgroundjobs_task', $key );
$done = true;
call_user_func( $value );
break;