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

(-)a/C4/Output.pm (-2 / +9 lines)
Lines 62-68 C4::Output - Functions for managing output, is slowly being deprecated Link Here
62
=head1 FUNCTIONS
62
=head1 FUNCTIONS
63
63
64
=over 2
64
=over 2
65
=cut
66
65
67
=item pagination_bar
66
=item pagination_bar
68
67
Lines 342-347 sub output_and_exit_if_error { Link Here
342
    return;
341
    return;
343
}
342
}
344
343
344
=item output_and_exit
345
346
    output_and_exit( $query, $cookie, $template, $error );
347
348
    $error is a blocking error like biblionumber not found or so.
349
    We should output the error and exit.
350
351
=cut
352
345
sub output_and_exit {
353
sub output_and_exit {
346
    my ( $query, $cookie, $template, $error ) = @_;
354
    my ( $query, $cookie, $template, $error ) = @_;
347
    $template->param( blocking_error => $error );
355
    $template->param( blocking_error => $error );
348
- 

Return to bug 20661