From 60b91f65c95cda2cda2f65670af99b15be62f7de Mon Sep 17 00:00:00 2001 From: Joshua Ferraro Date: Tue, 23 Dec 2008 16:17:58 -0600 Subject: [PATCH] Adds the ability to reference itemcallnumber within XSLT Signed-off-by: Galen Charlton --- C4/XSLT.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/C4/XSLT.pm b/C4/XSLT.pm index 3c781d265f..eeb2ec73a2 100644 --- a/C4/XSLT.pm +++ b/C4/XSLT.pm @@ -160,7 +160,10 @@ sub buildKohaItemsNamespace { } else { $status = "available"; } - $xml.="".$branches->{$item->{homebranch}}->{'branchname'}.""."$status"; + $xml.="".$branches->{$item->{homebranch}}->{'branchname'}."". + "$status". + "".$item->{'itemcallnumber'}.""; + } return "".$xml.""; } -- 2.39.2