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 |
opac_suppressed = ? |
2652 |
WHERE biblionumber = ? |
2653 |
WHERE biblionumber = ? |
2653 |
" |
2654 |
" |
2654 |
; |
2655 |
; |
Lines 2659-2665
sub _koha_modify_biblio {
Link Here
|
2659 |
$biblio->{'medium'}, $biblio->{'part_number'}, $biblio->{'part_name'}, $biblio->{'unititle'}, |
2660 |
$biblio->{'medium'}, $biblio->{'part_number'}, $biblio->{'part_name'}, $biblio->{'unititle'}, |
2660 |
$biblio->{'notes'}, $biblio->{'serial'}, $biblio->{'seriestitle'}, |
2661 |
$biblio->{'notes'}, $biblio->{'serial'}, $biblio->{'seriestitle'}, |
2661 |
$biblio->{'copyrightdate'} ? int( $biblio->{'copyrightdate'} ) : undef, |
2662 |
$biblio->{'copyrightdate'} ? int( $biblio->{'copyrightdate'} ) : undef, |
2662 |
$biblio->{'abstract'}, $biblio->{'biblionumber'} |
2663 |
$biblio->{'abstract'}, $biblio->{'opac_suppressed'}, $biblio->{'biblionumber'} |
2663 |
) if $biblio->{'biblionumber'}; |
2664 |
) if $biblio->{'biblionumber'}; |
2664 |
|
2665 |
|
2665 |
my $cache = Koha::Cache::Memory::Lite->get_instance(); |
2666 |
my $cache = Koha::Cache::Memory::Lite->get_instance(); |
2666 |
- |
|
|