|
Lines 96-104
if ($routing) {
Link Here
|
| 96 |
my (@openedsubscriptions, @closedsubscriptions); |
96 |
my (@openedsubscriptions, @closedsubscriptions); |
| 97 |
for my $sub ( @subscriptions ) { |
97 |
for my $sub ( @subscriptions ) { |
| 98 |
unless ( $sub->{closed} ) { |
98 |
unless ( $sub->{closed} ) { |
| 99 |
push @openedsubscriptions, $sub; |
99 |
push @openedsubscriptions, $sub |
|
|
100 |
unless $sub->{cannotdisplay}; |
| 100 |
} else { |
101 |
} else { |
| 101 |
push @closedsubscriptions, $sub; |
102 |
push @closedsubscriptions, $sub |
|
|
103 |
unless $sub->{cannotdisplay}; |
| 102 |
} |
104 |
} |
| 103 |
} |
105 |
} |
| 104 |
|
106 |
|
|
Lines 127-133
$template->param(
Link Here
|
| 127 |
branches_loop => \@branches_loop, |
129 |
branches_loop => \@branches_loop, |
| 128 |
done_searched => $searched, |
130 |
done_searched => $searched, |
| 129 |
routing => $routing, |
131 |
routing => $routing, |
| 130 |
size => scalar ( map {$_->{cannotedit} ? () : 1} @subscriptions ), |
|
|
| 131 |
marcflavour => (uc(C4::Context->preference("marcflavour"))) |
132 |
marcflavour => (uc(C4::Context->preference("marcflavour"))) |
| 132 |
); |
133 |
); |
| 133 |
|
134 |
|
| 134 |
- |
|
|