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

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

Return to bug 22690