Lines 1869-1875
sub _koha_notify_reserve {
Link Here
|
1869 |
'reserves' => $hold->unblessed, |
1869 |
'reserves' => $hold->unblessed, |
1870 |
'items' => $hold->itemnumber, |
1870 |
'items' => $hold->itemnumber, |
1871 |
}, |
1871 |
}, |
1872 |
substitute => { today => output_pref( { dt => dt_from_string, dateonly => 1 } ) }, |
|
|
1873 |
); |
1872 |
); |
1874 |
|
1873 |
|
1875 |
my $notification_sent = 0; #Keeping track if a Hold_filled message is sent. If no message can be sent, then default to a print message. |
1874 |
my $notification_sent = 0; #Keeping track if a Hold_filled message is sent. If no message can be sent, then default to a print message. |
1876 |
- |
|
|