silverstripe-fulltextsearch/code
Daniel Pickering 6ab5969ac1 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.
2014-08-21 16:58:59 +12:00
..
search Fix many_many fieldData bug 2014-08-21 16:58:59 +12:00
solr BUG Patch up the information leak of debug information. 2014-06-11 12:07:09 +12:00
utils WebDAV::exists() should add a trailing slash for checking dirs 2013-02-13 09:57:13 +13:00