Lines 107-113
my $conflicting_attribute = 0;
Link Here
|
107 |
|
107 |
|
108 |
foreach my $attr (@$attributes) { |
108 |
foreach my $attr (@$attributes) { |
109 |
my $attribute = Koha::Patron::Attribute->new($attr); |
109 |
my $attribute = Koha::Patron::Attribute->new($attr); |
110 |
if ( !$$attribute->unique_ok ) { |
110 |
if ( !$attribute->unique_ok ) { |
111 |
my $attr_type = Koha::Patron::Attribute::Types->find($attr->{code}); |
111 |
my $attr_type = Koha::Patron::Attribute::Types->find($attr->{code}); |
112 |
$template->param( |
112 |
$template->param( |
113 |
extended_unique_id_failed_code => $attr->{code}, |
113 |
extended_unique_id_failed_code => $attr->{code}, |
114 |
- |
|
|