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

(-)a/C4/Circulation.pm (-3 / +2 lines)
Lines 3273-3279 sub SendCirculationAlert { Link Here
3273
                    'borrowers'   => $borrower,
3273
                    'borrowers'   => $borrower,
3274
                    'branches'    => $branch,
3274
                    'branches'    => $branch,
3275
                }
3275
                }
3276
            ) or return;
3276
            ) or next;
3277
            C4::Message->enqueue($letter, $borrower, $_);
3277
            C4::Message->enqueue($letter, $borrower, $_);
3278
        } else {
3278
        } else {
3279
            #warn "append to old message";
3279
            #warn "append to old message";
Lines 3290-3296 sub SendCirculationAlert { Link Here
3290
                    'borrowers'   => $borrower,
3290
                    'borrowers'   => $borrower,
3291
                    'branches'    => $branch,
3291
                    'branches'    => $branch,
3292
                }
3292
                }
3293
            ) or return;
3293
            ) or next;
3294
            $message->append($letter);
3294
            $message->append($letter);
3295
            $message->update;
3295
            $message->update;
3296
        }
3296
        }
3297
- 

Return to bug 12344