From: Paul POULAIN Date: Sun, 20 Jan 2008 06:58:52 +0000 (-0600) Subject: moving a misplaced * to fix a bug in issuingrules X-Git-Tag: v3.00.00-beta~571 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=07210c550843895860f6aa3ce2a62af1ccb8c31b;p=koha-ffzg.git moving a misplaced * to fix a bug in issuingrules Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- 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 );