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 |
- |
|
|