producerContent debugging / pageCount inserted
[mir.git] / source / mircoders / entity / EntityContent.java
index 47b7ef9..958f697 100755 (executable)
@@ -354,17 +354,16 @@ public class EntityContent extends Entity
     return DatabaseContentToMedia.getInstance().getAudio(this) ;
   }
 
-  private SimpleList getVideoForContent()
+  private EntityList getVideoForContent()
     throws StorageObjectException, TemplateModelException
   {
     return DatabaseContentToMedia.getInstance().getVideo(this) ;
   }
 
-  private SimpleList getOtherMediaForContent()
+  private EntityList getOtherMediaForContent()
     throws StorageObjectException, TemplateModelException
   {
-    return HTMLTemplateProcessor.makeSimpleList(
-             DatabaseContentToMedia.getInstance().getOther(this) );
+    return DatabaseContentToMedia.getInstance().getOther(this);
   }
 
 }