Update of /cvsroot/koha/koha/circ In directory usw-pr-cvs1:/tmp/cvs-serv19352/circ Modified Files: circulation.pl Log Message: Added a heading to be consistent with rest of Koha Index: circulation.pl =================================================================== RCS file: /cvsroot/koha/koha/circ/circulation.pl,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** circulation.pl 14 Mar 2002 01:04:00 -0000 1.22 --- circulation.pl 14 Mar 2002 01:50:17 -0000 1.23 *************** *** 193,199 **** sub returns { my %returneditems; ! print << "EOF"; ! <table border=0 cellpadding=10 cellspacing=0 cellpadding=5><tr><th background=$backgroundimage>Circulation - Returns</th></tr><tr><td bgcolor=$circbackgroundcolor align=center> ! EOF foreach ($query->param) { (next) unless (/ri-(\d*)/); --- 193,197 ---- sub returns { my %returneditems; ! print "<FONT SIZE=6><em>Circulation: Returns</em></FONT><br>"; foreach ($query->param) { (next) unless (/ri-(\d*)/); *************** *** 421,424 **** --- 419,423 ---- sub issues { + my ($noheader) = shift; my $print=$query->param('print'); *************** *** 468,474 **** <a href=circulation.pl?borrnumber=$borrowernumber&module=issues&branch=$branch&printer=$printer&print>Next Borrower</a> || <a href=circulation.pl?module=returns&branch=$branch&printer=$printer>Returns</a> || ! <a href=branchtransfers.pl>Transfer Book</a></font><p> </p> EOF } --- 467,474 ---- <a href=circulation.pl?borrnumber=$borrowernumber&module=issues&branch=$branch&printer=$printer&print>Next Borrower</a> || <a href=circulation.pl?module=returns&branch=$branch&printer=$printer>Returns</a> || ! <a href=branchtransfers.pl>Transfers</a></font><p> </p> + <FONT SIZE=6><em>Circulation: Issues</em></FONT><br> EOF }