Issue Tracker - Searchable Issues
Jamroom Developers
you'll need to use the 'search_fields' listener to add jrTracker to the list of modules that are enabled for search.
So in your listener you'll get a $_data array like this:
$_data = array(
'jrAudio' => array('audio_title,audio_genre,audio_album' => 52),
......
)Then add in the jrTracker module to that array with the fields you want to search, probably
$_data = array(
'jrAudio' => array('audio_title,audio_genre,audio_album' => 52),
......
'jrTracker' => array('tracker_text,tracker_title' => 36)
)