[ https://issues.apache.org/jira/browse/LUCENE-2524?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Robert Muir updated LUCENE-2524: -------------------------------- Fix Version/s: 3.0.3 2.9.4 > when many query clases are specified in boolean or dismax query, highlighted > terms are always "yellow" if multi-colored feature is used > --------------------------------------------------------------------------------------------------------------------------------------- > > Key: LUCENE-2524 > URL: https://issues.apache.org/jira/browse/LUCENE-2524 > Project: Lucene - Java > Issue Type: Bug > Components: contrib/highlighter > Affects Versions: 2.9 > Reporter: Koji Sekiguchi > Assignee: Koji Sekiguchi > Priority: Trivial > Fix For: 2.9.4, 3.0.3, 3.1, 4.0 > > Attachments: LUCENE-2524.patch > > > The problem is the following snippet: > {code} > protected String getPreTag( int num ){ > return preTags.length > num ? preTags[num] : preTags[0]; > } > {code} > it should be: > {code} > protected String getPreTag( int num ){ > int n = num % preTags.length; > return preTags[n]; > } > {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org