Fix many_many fieldData bug

This fixes a critical bug meaning that using many_many fields in full text searching would have always failed.

the $singleton->many_many() lookup returns an array() of many-many components, however the line $class = $manyMany[0] is wrong, as the first value of the array is always the $dataClass (parentClass), not the otherClass (childClass).

Changing this to $class = $manyMany[1] fixes this bug.
This commit is contained in:
Daniel Pickering 2014-06-25 14:21:57 +12:00 committed by Sean Harvey
parent 5b19ebf7b3
commit 6ab5969ac1
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ abstract class SearchIndex extends ViewableData {
);
}
else if ($manyMany = $singleton->many_many($lookup)) {
$class = $manyMany[0];
$class = $manyMany[1];
$options['multi_valued'] = true;
$options['lookup_chain'][] = array(
'call' => 'method', 'method' => $lookup,