Lines 429-435
sub _add_rowdata {
Link Here
|
429 |
$rowref->{author}= $marcrecord->subfield('100','a')||''; |
429 |
$rowref->{author}= $marcrecord->subfield('100','a')||''; |
430 |
$rowref->{date}= $marcrecord->subfield('260','c')||''; |
430 |
$rowref->{date}= $marcrecord->subfield('260','c')||''; |
431 |
$rowref->{edition}= $marcrecord->subfield('250','a')||''; |
431 |
$rowref->{edition}= $marcrecord->subfield('250','a')||''; |
432 |
$rowref->{lccn}= $marcrecord->subfield('050','a')||''; |
432 |
$rowref->{lccn}= $marcrecord->subfield('010','a')||''; |
|
|
433 |
#LC control number, not call number! |
433 |
} |
434 |
} |
434 |
else { #UNIMARC |
435 |
else { #UNIMARC |
435 |
$rowref->{isbn}= _isbn_show($marcrecord, '010'); |
436 |
$rowref->{isbn}= _isbn_show($marcrecord, '010'); |
436 |
- |
|
|