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

(-)a/Koha/ILL/Request.pm (-3 / +6 lines)
Lines 483-490 sub load_backend { Link Here
483
        logger => Koha::ILL::Request::Logger->new
483
        logger => Koha::ILL::Request::Logger->new
484
    };
484
    };
485
485
486
    # Find plugin implementing the backend for the request
486
    my $plugin;
487
    my $plugin = $self->get_backend_plugin($backend_name);
487
    if ( $backend_name ne 'Standard' ) {
488
489
        # Find plugin implementing the backend for the request
490
        $plugin = $self->get_backend_plugin($backend_name);
491
    }
488
492
489
    if ( $backend_name eq 'Standard' ) {
493
    if ( $backend_name eq 'Standard' ) {
490
494
491
- 

Return to bug 39092