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

(-)a/C4/Letters.pm (-1 / +1 lines)
Lines 148-154 my %letter; Link Here
148
sub getletter {
148
sub getletter {
149
    my ( $module, $code, $branchcode ) = @_;
149
    my ( $module, $code, $branchcode ) = @_;
150
150
151
    $branchcode |= '';
151
    $branchcode ||= '';
152
152
153
    if ( C4::Context->preference('IndependantBranches')
153
    if ( C4::Context->preference('IndependantBranches')
154
            and $branchcode
154
            and $branchcode
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/printslip.tt (-3 lines)
Lines 12-19 Link Here
12
    [% IntranetSlipPrinterJS %]
12
    [% IntranetSlipPrinterJS %]
13
[% ELSE %]
13
[% ELSE %]
14
     function printThenClose() {
14
     function printThenClose() {
15
         window.print();
16
         window.close();
17
     }
15
     }
18
[% END %]
16
[% END %]
19
</script>
17
</script>
20
- 

Return to bug 8606