task_24859 #14

Merged
francesco.mangiacrapa merged 7 commits from task_24859 into master 2023-04-05 10:35:03 +02:00
1 changed files with 5 additions and 2 deletions
Showing only changes of commit 7081772f19 - Show all commits

View File

@ -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;
}