From 610457ea415b552c5f644d6025a127dea1fb3908 Mon Sep 17 00:00:00 2001 From: Magnus Enger Date: Thu, 2 Jun 2011 21:36:14 +0200 Subject: [PATCH] Bug 6450 - No check in/check out messages in message_queue Huge thanks to Katrin Fischer for spotting what was the trouble here! Signed-off-by: Chris Cormack Signed-off-by: Ian Walls --- C4/Circulation.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 5efd090099..179fe7026a 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -2614,8 +2614,8 @@ sub SendCirculationAlert { my ($type, $item, $borrower, $branch) = ($opts->{type}, $opts->{item}, $opts->{borrower}, $opts->{branch}); my %message_name = ( - CHECKIN => 'Item Check-in', - CHECKOUT => 'Item Checkout', + CHECKIN => 'Item_Check_in', + CHECKOUT => 'Item_Checkout', ); my $borrower_preferences = C4::Members::Messaging::GetMessagingPreferences({ borrowernumber => $borrower->{borrowernumber}, -- 2.39.5