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

(-)a/C4/AuthoritiesMarc.pm (-1 / +1 lines)
Lines 856-861 Returns MARC::Record of the authority passed in parameter. Link Here
856
sub GetAuthority {
856
sub GetAuthority {
857
    my ($authid)=@_;
857
    my ($authid)=@_;
858
    my $authority = Koha::Authority->get_from_authid($authid);
858
    my $authority = Koha::Authority->get_from_authid($authid);
859
    return unless $authority;
859
    return ($authority->record);
860
    return ($authority->record);
860
}
861
}
861
862
862
- 

Return to bug 8905