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

(-)a/C4/Biblio.pm (-3 / +4 lines)
Lines 2648-2654 sub _koha_modify_biblio { Link Here
2648
               serial = ?,
2648
               serial = ?,
2649
               seriestitle = ?,
2649
               seriestitle = ?,
2650
               copyrightdate = ?,
2650
               copyrightdate = ?,
2651
               abstract = ?
2651
               abstract = ?,
2652
               timestamp = current_timestamp()
2652
        WHERE  biblionumber = ?
2653
        WHERE  biblionumber = ?
2653
        "
2654
        "
2654
        ;
2655
        ;
Lines 2716-2722 sub _koha_modify_biblioitem_nonmarc { Link Here
2716
        cn_sort         = ?,
2717
        cn_sort         = ?,
2717
        totalissues     = ?,
2718
        totalissues     = ?,
2718
        ean             = ?,
2719
        ean             = ?,
2719
        agerestriction  = ?
2720
        agerestriction  = ?,
2721
        timestamp       = current_timestamp()
2720
        where biblioitemnumber = ?
2722
        where biblioitemnumber = ?
2721
        ";
2723
        ";
2722
    my $sth = $dbh->prepare($query);
2724
    my $sth = $dbh->prepare($query);
2723
- 

Return to bug 39558