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

(-)a/mainpage.pl (-1 / +2 lines)
Lines 55-61 $template->param( Link Here
55
);
55
);
56
56
57
my $branch =
57
my $branch =
58
  C4::Context->preference("IndependentBranchesPatronModifications")
58
  (      C4::Context->preference("IndependentBranchesPatronModifications")
59
      || C4::Context->preference("IndependentBranches") )
59
  && !$flags->{'superlibrarian'}
60
  && !$flags->{'superlibrarian'}
60
  ? C4::Context->userenv()->{'branch'}
61
  ? C4::Context->userenv()->{'branch'}
61
  : undef;
62
  : undef;
(-)a/members/members-update.pl (-2 / +2 lines)
Lines 42-48 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user( Link Here
42
);
42
);
43
43
44
my $branch =
44
my $branch =
45
  C4::Context->preference("IndependentBranchesPatronModifications")
45
  (      C4::Context->preference("IndependentBranchesPatronModifications")
46
      || C4::Context->preference("IndependentBranches") )
46
  && !$flags->{'superlibrarian'}
47
  && !$flags->{'superlibrarian'}
47
  ? C4::Context->userenv()->{'branch'}
48
  ? C4::Context->userenv()->{'branch'}
48
  : undef;
49
  : undef;
49
- 

Return to bug 10904