From 7779896064ac08de5a8b8ce83bf6a683bf8605b8 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Tue, 4 Jan 2011 14:38:44 -0500 Subject: [PATCH] bug 5497: make all library fields available to circ receipt/slips This allows the receipt template to be more readily customized to include the library's address, phone number, email address, etc. Signed-off-by: Galen Charlton Signed-off-by: Nicole Engard Signed-off-by: Chris Cormack (cherry picked from commit 4daef50c7a554e6ef2b83e29ac877a70366bddfa) Signed-off-by: Chris Nighswonger --- members/moremember.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/members/moremember.pl b/members/moremember.pl index beec2932cc..0be125c0b2 100755 --- a/members/moremember.pl +++ b/members/moremember.pl @@ -221,8 +221,7 @@ if ( C4::Context->preference("IndependantBranches") ) { $samebranch = 1; } my $branchdetail = GetBranchDetail( $data->{'branchcode'}); -$data->{'branchname'} = $branchdetail->{branchname}; - +@{$data}{keys %$branchdetail} = values %$branchdetail; # merge in all branch columns my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber ); my $lib1 = &GetSortDetails( "Bsort1", $data->{'sort1'} ); -- 2.39.5