fixed / clean ups
[mir.git] / source / mircoders / search / TopicMatrixSearchTerm.java
index f02d9e4..e6be2a1 100755 (executable)
@@ -52,7 +52,7 @@ public class TopicMatrixSearchTerm extends SearchTerm{
     EntityList topics = DatabaseContentToTopics.getInstance().getTopics((EntityContent) entity);
     if (topics != null && topics.size()>0){
       for(int k=0;k<topics.size();k++){
-        doc.add(Field.UnStored(matchField,(topics.elementAt(k)).getValue("title")));
+        doc.add(Field.UnStored(matchField,(topics.elementAt(k)).getFieldValue("title")));
       }
     }
   }