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

(-)a/Koha/ILL/Backend/Standard.pm (-2 / +1 lines)
Lines 796-802 sub _set_requested_partners { Link Here
796
        type          => 'requested_partners'
796
        type          => 'requested_partners'
797
    };
797
    };
798
    Koha::ILL::Request::Attributes->search($where)->delete();
798
    Koha::ILL::Request::Attributes->search($where)->delete();
799
    Koha::ILL::Request::Attributes->new(
799
    Koha::ILL::Request::Attribute->new(
800
        {
800
        {
801
            illrequest_id => $args->{request}->id,
801
            illrequest_id => $args->{request}->id,
802
            column_exists( 'illrequestattributes', 'backend' ) ? ( backend => "Standard" ) : (),
802
            column_exists( 'illrequestattributes', 'backend' ) ? ( backend => "Standard" ) : (),
803
- 

Return to bug 39175