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

(-)a/Koha/Virtualshelf.pm (-2 / +1 lines)
Lines 271-277 sub can_biblios_be_removed { Link Here
271
    return 1
271
    return 1
272
      if $borrowernumber
272
      if $borrowernumber
273
      and (  $self->owner == $borrowernumber
273
      and (  $self->owner == $borrowernumber
274
          or $self->allow_delete_own
274
          or ( $self->allow_delete_own and $self->allow_add )
275
          or $self->allow_delete_other );
275
          or $self->allow_delete_other );
276
    return 0;
276
    return 0;
277
}
277
}
278
- 

Return to bug 10679