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

(-)a/Koha/Plugins/Base.pm (-3 / +2 lines)
Lines 267-274 Note: this is a wrapper function for C4::Output::output_with_http_headers Link Here
267
=cut
267
=cut
268
268
269
sub output_html {
269
sub output_html {
270
    my ( $self, $data, $status, $extra_options ) = @_;
270
    my ( $self, $data, $status, $extra_options, $cookie ) = @_;
271
    output_with_http_headers( $self->{cgi}, undef, $data, 'html', $status, $extra_options );
271
    output_with_http_headers( $self->{cgi}, $cookie, $data, 'html', $status, $extra_options );
272
}
272
}
273
273
274
=head2 bundle_path
274
=head2 bundle_path
275
- 

Return to bug 40653