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

(-)a/C4/Biblio.pm (-6 / +6 lines)
Lines 2588-2604 sub _koha_modify_biblio { Link Here
2588
               serial = ?,
2588
               serial = ?,
2589
               seriestitle = ?,
2589
               seriestitle = ?,
2590
               copyrightdate = ?,
2590
               copyrightdate = ?,
2591
               abstract = ?
2591
               abstract = ?,
2592
               opac_suppressed = ?
2592
        WHERE  biblionumber = ?
2593
        WHERE  biblionumber = ?
2593
        "
2594
        "
2594
      ;
2595
      ;
2595
    my $sth = $dbh->prepare($query);
2596
    my $sth = $dbh->prepare($query);
2596
2597
2597
    $sth->execute(
2598
    $sth->execute(
2598
        $frameworkcode,        $biblio->{'author'},      $biblio->{'title'},       $biblio->{'subtitle'},
2599
        $frameworkcode,        $biblio->{'author'},          $biblio->{'title'},       $biblio->{'subtitle'},
2599
        $biblio->{'medium'},   $biblio->{'part_number'}, $biblio->{'part_name'},   $biblio->{'unititle'},
2600
        $biblio->{'medium'},   $biblio->{'part_number'},     $biblio->{'part_name'},   $biblio->{'unititle'},
2600
        $biblio->{'notes'},    $biblio->{'serial'},      $biblio->{'seriestitle'}, $biblio->{'copyrightdate'} ? int($biblio->{'copyrightdate'}) : undef,
2601
        $biblio->{'notes'},    $biblio->{'serial'},          $biblio->{'seriestitle'}, $biblio->{'copyrightdate'} ? int($biblio->{'copyrightdate'}) : undef,
2601
        $biblio->{'abstract'}, $biblio->{'biblionumber'}
2602
        $biblio->{'abstract'}, $biblio->{'opac_suppressed'}, $biblio->{'biblionumber'}
2602
    ) if $biblio->{'biblionumber'};
2603
    ) if $biblio->{'biblionumber'};
2603
2604
2604
    my $cache = Koha::Cache::Memory::Lite->get_instance();
2605
    my $cache = Koha::Cache::Memory::Lite->get_instance();
2605
- 

Return to bug 38330