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

(-)a/Koha/Item.pm (-2 / +1 lines)
Lines 1212-1218 sub move_to_biblio { Link Here
1212
1212
1213
    $params //= {};
1213
    $params //= {};
1214
1214
1215
    return unless $self->biblionumber != $to_biblio->biblionumber;
1215
    return if $self->biblionumber == $to_biblio->biblionumber;
1216
1216
1217
    my $from_biblionumber = $self->biblionumber;
1217
    my $from_biblionumber = $self->biblionumber;
1218
    my $to_biblionumber = $to_biblio->biblionumber;
1218
    my $to_biblionumber = $to_biblio->biblionumber;
1219
- 

Return to bug 22690