From d888835b63b3c581f5ff0c8368b287f91baaedf4 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 24 Jan 2013 14:20:38 -0500 Subject: [PATCH] Bug 9487: Allow item fields to be used in the HOLDPLACED notice Test Plan: 1) Enable the syspref emailLibrarianWhenHoldIsPlaced 2) Modify the HOLDPLACED notice, add some item level fields 3) Place an item level hold 4) Check the email you receive ( or just look at it from the db ) You should see the item level fields are new populated 5) Place a title level hold 6) Check the email you receive - item fields are not populated, but notice still looks ok. Signed-off-by: Srdjan Signed-off-by: Katrin Fischer Signed-off-by: Galen Charlton --- C4/Reserves.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Reserves.pm b/C4/Reserves.pm index 0291def3aa..d6812f1d99 100644 --- a/C4/Reserves.pm +++ b/C4/Reserves.pm @@ -213,6 +213,7 @@ sub AddReserve { 'branches' => $branch_details, 'borrowers' => $borrower, 'biblio' => $biblionumber, + 'items' => $checkitem, }, ) ) { -- 2.20.1