From cdc46d0a2ae023b4c5e6ff7cb8babec37045625d Mon Sep 17 00:00:00 2001 From: Jane Wagner Date: Thu, 25 Feb 2010 12:59:08 -0500 Subject: [PATCH] Bug 4210 Acq suggestions don't have LibraryName value passed Updated to current head. The various acquisitions suggestion templates have a LibraryName field, but no value is passed for that field. Added a parameter for that data. Signed-off-by: Galen Charlton --- C4/Suggestions.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Suggestions.pm b/C4/Suggestions.pm index 7c283f1807..0d49e4a607 100644 --- a/C4/Suggestions.pm +++ b/C4/Suggestions.pm @@ -387,6 +387,7 @@ sub ModSuggestion { letter=>$letter, borrowernumber=>$suggestion->{suggestedby}, suggestionid=>$suggestion->{suggestionid}, + LibraryName => C4::Context->preference("LibraryName"), msg_transport_type=>'email' }); if (!$enqueued){warn "can't enqueue letter $letter";} -- 2.39.5