View | Details | Raw Unified | Return to bug 13606
Collapse All | Expand All

(-)a/C4/BackgroundJob.pm (+19 lines)
Lines 300-305 sub get { Link Here
300
    return $self->{extra_values}->{$key};
300
    return $self->{extra_values}->{$key};
301
}
301
}
302
302
303
304
=head2 clear
305
306
=over 4
307
308
=item $job->clear();
309
310
=back
311
312
Clear the job from the current session.
313
314
=cut
315
316
sub clear {
317
    my $self = shift;
318
    get_session($self->{sessionID})->clear('job_' . $self->{jobID});
319
}
320
321
303
1;
322
1;
304
__END__
323
__END__
305
324
(-)a/tools/batch_record_modification.pl (-1 / +1 lines)
Lines 62-67 if ( $completedJobID ) { Link Here
62
        view => 'report',
62
        view => 'report',
63
    );
63
    );
64
    output_html_with_http_headers $input, $cookie, $template->output;
64
    output_html_with_http_headers $input, $cookie, $template->output;
65
    $job->clear();
65
    exit;
66
    exit;
66
}
67
}
67
68
68
- 

Return to bug 13606