Browse Source

Bug 18936: (follow-up) More fixes

Previous "More fixes" patch added a debugging statement, not needed.

Signed-off-by: Joonas Kylmälä <joonas.kylmala@helsinki.fi>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
20.05.x
Jonathan Druart 4 years ago
committed by Martin Renvoize
parent
commit
2e9fde1bcd
Signed by: martin.renvoize GPG Key ID: 422B469130441A0F
  1. 3
      Koha/CirculationRules.pm

3
Koha/CirculationRules.pm

@ -183,9 +183,8 @@ sub get_effective_rule {
my $itemtype = $params->{itemtype};
my $branchcode = $params->{branchcode};
my @c = caller;
Koha::Exceptions::MissingParameter->throw(
"Required parameter 'rule_name' missing" . "@c")
"Required parameter 'rule_name' missing")
unless $rule_name;
for my $v ( $branchcode, $categorycode, $itemtype ) {

Loading…
Cancel
Save