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

(-)a/C4/Biblio.pm (-2 / +10 lines)
Lines 470-476 sub _strip_item_fields { Link Here
470
470
471
=head2 DelBiblio
471
=head2 DelBiblio
472
472
473
  my $error = &DelBiblio($biblionumber);
473
  my $error = &DelBiblio($biblionumber, $params);
474
474
475
Exported function (core API) for deleting a biblio in koha.
475
Exported function (core API) for deleting a biblio in koha.
476
Deletes biblio record from Zebra and Koha tables (biblio & biblioitems)
476
Deletes biblio record from Zebra and Koha tables (biblio & biblioitems)
Lines 479-484 Checks to make sure that the biblio has no items attached. Link Here
479
return:
479
return:
480
C<$error> : undef unless an error occurs
480
C<$error> : undef unless an error occurs
481
481
482
I<$params> is a hashref containing extra parameters. Valid keys are:
483
484
=over 4
485
486
=item B<skip_holds_queue>: used when the holds queue update will be handled by the caller
487
488
=item B<skip_record_index>: used when the indexing schedulling will be handled by the caller
489
490
=back
482
=cut
491
=cut
483
492
484
sub DelBiblio {
493
sub DelBiblio {
485
- 

Return to bug 30710