From: Liz Rea Date: Fri, 4 Nov 2011 19:37:11 +0000 (-0500) Subject: Bug 7159 - Add branchcode to circulation.pl search (take two, revising with Owen... X-Git-Url: http://git.rot13.org/?p=koha.git;a=commitdiff_plain;h=4fad65cc269b049043da2841b491b3c0132ff0e6 Bug 7159 - Add branchcode to circulation.pl search (take two, revising with Owen's suggestion) I know there's talk of getting rid of this patron search method, but I had a request for this and so here it is. To test: verify that branchcode is displayed on patron search results from circulation.pl. Signed-off-by: Owen Leonard Signed-off-by: Paul Poulain --- diff --git a/circ/circulation.pl b/circ/circulation.pl index fa043dddde..ad6773e128 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -510,7 +510,7 @@ if ($borrowerslist) { { push @values, $_->{'borrowernumber'}; $labels{ $_->{'borrowernumber'} } = -"$_->{'surname'}, $_->{'firstname'} ... ($_->{'cardnumber'} - $_->{'categorycode'}) ... $_->{'address'} "; +"$_->{'surname'}, $_->{'firstname'} ... ($_->{'cardnumber'} - $_->{'categorycode'} - $_->{'branchcode'}) ... $_->{'address'} "; } $CGIselectborrower = CGI::scrolling_list( -name => 'borrowernumber',