commentadmin better
[mir.git] / source / mircoders / storage / DatabaseComment.java
index 7787a58..25ada19 100755 (executable)
@@ -7,9 +7,9 @@ import java.util.*;
 
 import freemarker.template.*;
 
-import webdb.storage.*;
-import webdb.entity.*;
-import webdb.misc.*;
+import mir.storage.*;
+import mir.entity.*;
+import mir.misc.*;
 
 /**
  * <b>This class implements the access to the comment-table for the
@@ -37,7 +37,7 @@ public class DatabaseComment extends Database implements StorageObject{
                this.cache = new HashMap();
                this.theTable="comment";
                try {
-                       this.theEntityClass = Class.forName("mir.entity.EntityComment");
+                       this.theEntityClass = Class.forName("mircoders.entity.EntityComment");
                }
                catch (Exception e) { throw new StorageObjectException(e.toString());   }
        }