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

(-)a/Koha/Acquisition/Currencies.pm (-2 / +2 lines)
Lines 44-54 sub get_active { Link Here
44
    return $self->SUPER::search( { active => 1 } )->next;
44
    return $self->SUPER::search( { active => 1 } )->next;
45
}
45
}
46
46
47
=head3 type
47
=head3 _type
48
48
49
=cut
49
=cut
50
50
51
sub type {
51
sub _type {
52
    return 'Currency';
52
    return 'Currency';
53
}
53
}
54
54
(-)a/Koha/Acquisition/Currency.pm (-3 / +2 lines)
Lines 53-63 sub store { Link Here
53
    return $result;
53
    return $result;
54
}
54
}
55
55
56
=head3 type
56
=head3 _type
57
57
58
=cut
58
=cut
59
59
60
sub type {
60
sub _type {
61
    return 'Currency';
61
    return 'Currency';
62
}
62
}
63
63
64
- 

Return to bug 15084