Lines 620-626
sub _convert_index_fields {
Link Here
|
620 |
# when joining things, to indicate we make it an 'OR' join. |
620 |
# when joining things, to indicate we make it an 'OR' join. |
621 |
# (Sorry, this got a bit ugly after special cases were found.) |
621 |
# (Sorry, this got a bit ugly after special cases were found.) |
622 |
grep { $_->{field} } map { |
622 |
grep { $_->{field} } map { |
623 |
my ( $f, $t ) = split /,/; |
623 |
my ( $f, $d ) = /(.+)_(.+)/; |
624 |
my $mc = ''; |
624 |
my $mc = ''; |
625 |
if ($f =~ /^mc-/) { |
625 |
if ($f =~ /^mc-/) { |
626 |
$mc = 'mc-'; |
626 |
$mc = 'mc-'; |
627 |
- |
|
|