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

(-)a/C4/Reserves.pm (-3 / +2 lines)
Lines 1847-1855 sub _koha_notify_reserve { Link Here
1847
            message_name => 'Hold_Filled'
1847
            message_name => 'Hold_Filled'
1848
    } );
1848
    } );
1849
1849
1850
    my $library = Koha::Libraries->find( $hold->branchcode )->unblessed;
1850
    my $library = Koha::Libraries->find( $hold->branchcode );
1851
1852
    my $admin_email_address = $library->from_email_address;
1851
    my $admin_email_address = $library->from_email_address;
1852
    $library = $library->unblessed;
1853
1853
1854
    my %letter_params = (
1854
    my %letter_params = (
1855
        module => 'reserves',
1855
        module => 'reserves',
1856
- 

Return to bug 28581