View | Details | Raw Unified | Return to bug 11747
Collapse All | Expand All

(-)a/tools/overduerules.pl (-4 / +3 lines)
Lines 71-79 my ( $template, $loggedinuser, $cookie ) = get_template_and_user( Link Here
71
71
72
my $type = $input->param('type');
72
my $type = $input->param('type');
73
my $branch =
73
my $branch =
74
  defined( $input->param('branch') )
74
    defined( $input->param('branch') ) ? $input->param('branch')
75
  ? $input->param('branch')
75
  : GetBranchesCount() == 1            ? undef
76
  : C4::Branch::mybranch();
76
  :                                      C4::Branch::mybranch();
77
$branch = q{} if $branch eq 'NO_LIBRARY_SET';
77
$branch = q{} if $branch eq 'NO_LIBRARY_SET';
78
$branch ||= q{};
78
$branch ||= q{};
79
my $op = $input->param('op');
79
my $op = $input->param('op');
80
- 

Return to bug 11747