Changeset 3158 for trunk/gsdl/perllib/mgppbuilder.pm
- Timestamp:
- 2002-06-21T14:39:08+12:00 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gsdl/perllib/mgppbuilder.pm
r3144 r3158 900 900 # store the indexfieldmap information 901 901 my @indexfieldmap = (); 902 #add all fields bit 903 foreach $field (keys %{$self->{'buildproc'}->{'indexfields'}}) { 902 #add all fields bit - sort based on keys. text only is put at front 903 if (defined $self->{'buildproc'}->{'indexfields'}->{'TextOnly'}) { 904 push (@indexfieldmap, "TextOnly\-\>TX"); 905 } 906 foreach $field (sort keys %{$self->{'buildproc'}->{'indexfields'}}) { 907 next if $field eq "TextOnly"; 904 908 push (@indexfieldmap, "$field\-\>$self->{'buildproc'}->{'indexfieldmap'}->{$field}"); 905 909 }
Note:
See TracChangeset
for help on using the changeset viewer.