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

(-)a/C4/Biblio.pm (-3 / +4 lines)
Lines 3342-3348 sub _koha_modify_biblio { Link Here
3342
               serial = ?,
3342
               serial = ?,
3343
               seriestitle = ?,
3343
               seriestitle = ?,
3344
               copyrightdate = ?,
3344
               copyrightdate = ?,
3345
               abstract = ?
3345
               abstract = ?,
3346
               timestamp = NOW()
3346
        WHERE  biblionumber = ?
3347
        WHERE  biblionumber = ?
3347
        "
3348
        "
3348
      ;
3349
      ;
Lines 3406-3412 sub _koha_modify_biblioitem_nonmarc { Link Here
3406
        cn_sort         = ?,
3407
        cn_sort         = ?,
3407
        totalissues     = ?,
3408
        totalissues     = ?,
3408
        ean             = ?,
3409
        ean             = ?,
3409
        agerestriction  = ?
3410
        agerestriction  = ?,
3411
        timestamp       = NOW()
3410
        where biblioitemnumber = ?
3412
        where biblioitemnumber = ?
3411
        ";
3413
        ";
3412
    my $sth = $dbh->prepare($query);
3414
    my $sth = $dbh->prepare($query);
3413
- 

Return to bug 9732