get rid of deprecated makeSimpleList and makeSimpleHash usage. this should be it...
[mir.git] / source / mircoders / producer / ProducerNavigation.java
index afbae4a..ef5a3fc 100755 (executable)
@@ -44,16 +44,13 @@ public class ProducerNavigation extends Producer {
 
         // get the imclinks
         entityList = linksImcsModule.getByWhereClause("", "sortpriority, title", -1);
-        SimpleList imcList = HTMLTemplateProcessor.makeSimpleList(entityList);
-
         EntityList theParentList = linksImcsModule.getByWhereClause("to_parent_id=NULL", "sortpriority, title", -1);
-        SimpleList parentList = HTMLTemplateProcessor.makeSimpleList(theParentList);
 
                // put the informations into the navipagemodel
                naviPageModel = new SimpleHash();
                naviPageModel.put("topics", topicsModule.getTopicsList());
-        naviPageModel.put("imclist", imcList);
-        naviPageModel.put("parentlist", parentList);
+        naviPageModel.put("imclist", entityList);
+        naviPageModel.put("parentlist", theParentList);
 
                htmlFileName = producerDocRoot + "/navigation.inc";