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());
|
parameters =getInternalIndexParams(theReport.getTheRequest());
|
||||||
if(phase.equals(Phases.PUBLISHED))
|
if(phase.equals(Phases.PUBLISHED))
|
||||||
parameters = getPublicIndexParams(theReport.getTheRequest());
|
parameters = getPublicIndexParams(theReport.getTheRequest());
|
||||||
if(parameters!= null)
|
if(parameters!= null) {
|
||||||
for(IndexerPluginInterface indexer : getIndexers(theReport.getTheRequest()))
|
//Fixed by Francesco, see #24902. Now is calling deIndex
|
||||||
|
for(IndexerPluginInterface indexer : getIndexers(theReport.getTheRequest())) {
|
||||||
theReport = deIndex(theReport,indexer,getPublicIndexParams(theReport.getTheRequest()));
|
theReport = deIndex(theReport,indexer,getPublicIndexParams(theReport.getTheRequest()));
|
||||||
|
}
|
||||||
|
}
|
||||||
return theReport;
|
return theReport;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue