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

(-)a/C4/Biblio.pm (-2 / +1 lines)
Lines 3006-3012 sub _koha_modify_biblio { Link Here
3006
3006
3007
    $sth->execute(
3007
    $sth->execute(
3008
        $frameworkcode,      $biblio->{'author'},      $biblio->{'title'},         $biblio->{'unititle'}, $biblio->{'notes'},
3008
        $frameworkcode,      $biblio->{'author'},      $biblio->{'title'},         $biblio->{'unititle'}, $biblio->{'notes'},
3009
        $biblio->{'serial'}, $biblio->{'seriestitle'}, int($biblio->{'copyrightdate'}), $biblio->{'abstract'}, $biblio->{'biblionumber'}
3009
        $biblio->{'serial'}, $biblio->{'seriestitle'}, $biblio->{'copyrightdate'} ? int($biblio->{'copyrightdate'}) : undef, $biblio->{'abstract'}, $biblio->{'biblionumber'}
3010
    ) if $biblio->{'biblionumber'};
3010
    ) if $biblio->{'biblionumber'};
3011
3011
3012
    if ( $dbh->errstr || !$biblio->{'biblionumber'} ) {
3012
    if ( $dbh->errstr || !$biblio->{'biblionumber'} ) {
3013
- 

Return to bug 19365