@@ -, +, @@ --- C4/Circulation.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -3273,7 +3273,7 @@ sub SendCirculationAlert { 'borrowers' => $borrower, 'branches' => $branch, } - ) or return; + ) or next; C4::Message->enqueue($letter, $borrower, $_); } else { #warn "append to old message"; @@ -3290,7 +3290,7 @@ sub SendCirculationAlert { 'borrowers' => $borrower, 'branches' => $branch, } - ) or return; + ) or next; $message->append($letter); $message->update; } --