changes to support UTF-8 encoding from
[webpac] / marc_sf.pm
1 #
2 # marc_sf($marc,'field'[,'subfield'])
3 #
4 # e.g. marc_sf($row,'700','a')
5 #
6 sub marc_sf {
7         my $marc = shift @_ || die "marc_sf: needs record";
8         my $f = shift @_ || die "marc_sf: needs field name";
9         my $s = shift @_;
10
11         my $i = shift @_ || 0;
12
13         my $rec = $main::cache->{marc_record} || die '$cache->{marc_record} is undefined!';
14
15         my @out = $marc->getvalue({record=>$rec,field=>$f,subfield=>$s});
16
17         return $out[$i] if (@out && $out[$i]);
18 }
19
20 1;
21