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

(-)a/C4/VirtualShelves.pm (-12 lines)
Lines 666-682 sub _shelf_count { Link Here
666
    return $total;
666
    return $total;
667
}
667
}
668
668
669
sub _biblionumber_sth { #only used in obsolete sub below
670
    my ($shelf) = @_;
671
    my $query = 'select biblionumber from virtualshelfcontents where shelfnumber = ?';
672
    my $dbh = C4::Context->dbh;
673
    my $sth = $dbh->prepare($query)
674
        or die $dbh->errstr;
675
    $sth->execute( $shelf )
676
        or die $sth->errstr;
677
    $sth;
678
}
679
680
sub _CheckShelfName {
669
sub _CheckShelfName {
681
    my ($name, $cat, $owner, $number)= @_;
670
    my ($name, $cat, $owner, $number)= @_;
682
671
683
- 

Return to bug 11799