Bug 18736: Calculate tax depending on rounding
[koha.git] / C4 / Output.pm
index eef4506..71f82e8 100644 (file)
@@ -62,7 +62,6 @@ C4::Output - Functions for managing output, is slowly being deprecated
 =head1 FUNCTIONS
 
 =over 2
-=cut
 
 =item pagination_bar
 
@@ -342,6 +341,15 @@ sub output_and_exit_if_error {
     return;
 }
 
+=item output_and_exit
+
+    output_and_exit( $query, $cookie, $template, $error );
+
+    $error is a blocking error like biblionumber not found or so.
+    We should output the error and exit.
+
+=cut
+
 sub output_and_exit {
     my ( $query, $cookie, $template, $error ) = @_;
     $template->param( blocking_error => $error );