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

(-)a/Koha/Biblio.pm (-2 / +1 lines)
Lines 559-565 sub get_coins { Link Here
559
                push @authors, $au;
559
                push @authors, $au;
560
            }
560
            }
561
        }
561
        }
562
        $title = $record->subfield( '245', 'a' ) . $record->subfield( '245', 'b' );
562
        $title = $record->subfield( '245', 'a' ) . ( $record->subfield( '245', 'b' ) // '');
563
        if ($titletype eq 'a') {
563
        if ($titletype eq 'a') {
564
            $pubyear   = $record->field('008') || '';
564
            $pubyear   = $record->field('008') || '';
565
            $pubyear   = substr($pubyear->data(), 7, 4) if $pubyear;
565
            $pubyear   = substr($pubyear->data(), 7, 4) if $pubyear;
566
- 

Return to bug 23627