From 07210c550843895860f6aa3ce2a62af1ccb8c31b Mon Sep 17 00:00:00 2001 From: Paul POULAIN Date: Sun, 20 Jan 2008 00:58:52 -0600 Subject: [PATCH] moving a misplaced * to fix a bug in issuingrules Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- C4/Circulation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 166b1e98c6..6140794651 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -433,7 +433,7 @@ sub TooMany { return ( "$alreadyissued / ".( $result->{maxissueqty} + 0 )." (rule on branch/category/itemtype failed)" ); } # now checking for total - $sth->execute( $cat_borrower, '', $branch ); + $sth->execute( $cat_borrower, '*', $branch ); my $result = $sth->fetchrow_hashref; if ( $result->{maxissueqty} ne '' ) { $sth2->execute( $borrower->{'borrowernumber'}, $type ); -- 2.11.0