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

(-)a/C4/Reserves.pm (-1 / +3 lines)
Lines 258-263 sub AddReserve { Link Here
258
    )->store();
258
    )->store();
259
    $hold->set_waiting() if $found && $found eq 'W';
259
    $hold->set_waiting() if $found && $found eq 'W';
260
260
261
    # record patron activity
262
    $hold->patron->update_lastseen('hold');
263
261
    logaction( 'HOLDS', 'CREATE', $hold->id, $hold )
264
    logaction( 'HOLDS', 'CREATE', $hold->id, $hold )
262
        if C4::Context->preference('HoldsLog');
265
        if C4::Context->preference('HoldsLog');
263
266
Lines 273-279 sub AddReserve { Link Here
273
276
274
    # Send e-mail to librarian if syspref is active
277
    # Send e-mail to librarian if syspref is active
275
    if(C4::Context->preference("emailLibrarianWhenHoldIsPlaced")){
278
    if(C4::Context->preference("emailLibrarianWhenHoldIsPlaced")){
276
        my $patron = Koha::Patrons->find( $borrowernumber );
277
        my $library = $patron->library;
279
        my $library = $patron->library;
278
        if ( my $letter =  C4::Letters::GetPreparedLetter (
280
        if ( my $letter =  C4::Letters::GetPreparedLetter (
279
            module => 'reserves',
281
            module => 'reserves',
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref (-1 / +1 lines)
Lines 101-106 Patrons: Link Here
101
               check_out: "Checking out an item"
101
               check_out: "Checking out an item"
102
               renewal: "Renewing an item"
102
               renewal: "Renewing an item"
103
               check_in: "Returning an item"
103
               check_in: "Returning an item"
104
               hold: "Placing a hold on an item"
104
     -
105
     -
105
         - pref: AutoApprovePatronProfileSettings
106
         - pref: AutoApprovePatronProfileSettings
106
           choices:
107
           choices:
107
- 

Return to bug 35027