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

(-)a/Koha/Patron/Attribute.pm (-1 / +3 lines)
Lines 46-51 sub store { Link Here
46
46
47
    my $self = shift;
47
    my $self = shift;
48
48
49
    Koha::Exceptions::Patron::Attribute::InvalidType->throw( type => $self->code )
50
        unless Koha::Patron::Attribute::Types->find( $self->code );
51
49
    $self->_check_repeatable;
52
    $self->_check_repeatable;
50
    $self->check_unique_id;
53
    $self->check_unique_id;
51
54
52
- 

Return to bug 27858