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

(-)a/Koha/Biblio.pm (-2 / +1 lines)
Lines 579-585 sub get_coins { Link Here
579
                push @authors, $au;
579
                push @authors, $au;
580
            }
580
            }
581
        }
581
        }
582
        $title = $record->subfield( '245', 'a' ) . $record->subfield( '245', 'b' );
582
        $title = $record->field('245')->as_string('ab');
583
        if ($titletype eq 'a') {
583
        if ($titletype eq 'a') {
584
            $pubyear   = $record->field('008') || '';
584
            $pubyear   = $record->field('008') || '';
585
            $pubyear   = substr($pubyear->data(), 7, 4) if $pubyear;
585
            $pubyear   = substr($pubyear->data(), 7, 4) if $pubyear;
586
- 

Return to bug 23310