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

(-)a/circ/bookcount.pl (-1 / +3 lines)
Lines 107-112 sub lastmove { Link Here
107
107
108
sub issuessince {
108
sub issuessince {
109
    my ( $itemnumber, $date ) = @_;
109
    my ( $itemnumber, $date ) = @_;
110
    if ( $date eq '0' ) {
111
        $date = '1970-01-01 00:00:00';
112
    }
110
    my $dbh = C4::Context->dbh;
113
    my $dbh = C4::Context->dbh;
111
    my $sth =
114
    my $sth =
112
      $dbh->prepare("SELECT SUM(count) FROM (
115
      $dbh->prepare("SELECT SUM(count) FROM (
113
- 

Return to bug 28952