Lines 1213-1220
sub GetAuthorizedHeading {
Link Here
|
1213 |
unless ($record = $args->{record}) { |
1213 |
unless ($record = $args->{record}) { |
1214 |
return unless $args->{authid}; |
1214 |
return unless $args->{authid}; |
1215 |
$record = GetAuthority($args->{authid}); |
1215 |
$record = GetAuthority($args->{authid}); |
1216 |
return unless $record; |
|
|
1217 |
} |
1216 |
} |
|
|
1217 |
return unless (ref $record eq 'MARC::Record'); |
1218 |
if (C4::Context->preference('marcflavour') eq 'UNIMARC') { |
1218 |
if (C4::Context->preference('marcflavour') eq 'UNIMARC') { |
1219 |
# construct UNIMARC summary, that is quite different from MARC21 one |
1219 |
# construct UNIMARC summary, that is quite different from MARC21 one |
1220 |
# accepted form |
1220 |
# accepted form |
1221 |
- |
|
|