Added comment bug fixing #24902
This commit is contained in:
parent
261d8f31c8
commit
7081772f19
|
@ -71,9 +71,12 @@ public class Default3PhaseManager extends SimpleLifeCycleManager implements Life
|
|||
parameters =getInternalIndexParams(theReport.getTheRequest());
|
||||
if(phase.equals(Phases.PUBLISHED))
|
||||
parameters = getPublicIndexParams(theReport.getTheRequest());
|
||||
if(parameters!= null)
|
||||
for(IndexerPluginInterface indexer : getIndexers(theReport.getTheRequest()))
|
||||
if(parameters!= null) {
|
||||
//Fixed by Francesco, see #24902. Now is calling deIndex
|
||||
for(IndexerPluginInterface indexer : getIndexers(theReport.getTheRequest())) {
|
||||
theReport = deIndex(theReport,indexer,getPublicIndexParams(theReport.getTheRequest()));
|
||||
}
|
||||
}
|
||||
return theReport;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue