Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug in name extraction (sets generation) #5

Closed
sebastfr opened this issue Jun 25, 2013 · 0 comments
Closed

Bug in name extraction (sets generation) #5

sebastfr opened this issue Jun 25, 2013 · 0 comments
Assignees
Milestone

Comments

@sebastfr
Copy link
Contributor

@sebastfr sebastfr commented Jun 25, 2013

Sets.pm:

       elsif( $type eq 'name' )
        {
                # use special rendering for names
                $value->{key} = $self->generate_key( $set, $raw_value );
                $value->{display} = $self->normalise_name( $raw_value );

                push @extracted_values, $value;
        }

Should be:

        elsif( $type eq 'name' )
        {
                # use special rendering for names

                $value->{display} = $self->normalise_name( $raw_value );
                $value->{key} = $self->generate_key( $set, $value->{display} );

                push @extracted_values, $value;
        }
@ghost ghost assigned sebastfr Jun 25, 2013
@sebastfr sebastfr closed this in e642629 Jun 26, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
1 participant