Changeset 13274


Ignore:
Timestamp:
2006-11-15T13:43:40+13:00 (17 years ago)
Author:
kjdon
Message:

in generate_index_list, add an extra ; on the end of the list. If there is only one field in the index (eg text), then the indexmap gets text->idx and the indexfieldmap gets text->TX, and they conflict and you end up with 'Search for _TX_' in the query form. now get text;->idx in the indexmap and so doesn't conflict

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/mgppbuilder.pm

    r12973 r13274  
    148148    my $indexes = $self->{'collect_cfg'}->{'indexes'};
    149149    $self->{'collect_cfg'}->{'indexes'} = [];
    150     push (@{$self->{'collect_cfg'}->{'indexes'}}, join(';', @$indexes));
     150    push (@{$self->{'collect_cfg'}->{'indexes'}}, join(';', @$indexes).";");
    151151}
    152152
Note: See TracChangeset for help on using the changeset viewer.