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

(-)a/recalls/recall_pickup_slip.pl (-5 / +6 lines)
Lines 58-73 my $letter = C4::Letters::GetPreparedLetter( Link Here
58
    }
58
    }
59
);
59
);
60
60
61
my ($slip, $is_html);
61
my ( $slip, $is_html, $style );
62
if ($letter) {
62
if ($letter) {
63
    $slip = $letter->{content};
63
    $slip    = $letter->{content};
64
    $is_html = $letter->{is_html};
64
    $is_html = $letter->{is_html};
65
    $style   = $letter->{style};
65
}
66
}
66
67
67
$template->param(
68
$template->param(
68
    slip => $slip,
69
    slip   => $slip,
69
    plain => !$is_html,
70
    plain  => !$is_html,
70
    caller => 'recall',
71
    caller => 'recall',
72
    style  => $style,
71
);
73
);
72
74
73
output_html_with_http_headers $input, $cookie, $template->output;
75
output_html_with_http_headers $input, $cookie, $template->output;
74
- 

Return to bug 33478