extra logging line.
[mir.git] / source / mircoders / servlet / ServletModuleUsers.java
index eaaa962..f0ede6f 100755 (executable)
@@ -51,8 +51,7 @@ public class ServletModuleUsers extends mir.servlet.ServletModule
                if (idParam == null) throw new ServletModuleException("Falscher Aufruf: (id) nicht angegeben");
                 try {
                        //theLog.printInfo("Showing User with id: " + idParam);
-                       SimpleHash mergeData =  HTMLTemplateProcessor.makeSimpleHash(mainModule.getById(idParam));
-                       deliver(req, res, mergeData, templateObjektString);
+                       deliver(req, res, mainModule.getById(idParam), templateObjektString);
                }
                catch (ModuleException e) { throw new ServletModuleException(e.toString());}
        }
@@ -74,8 +73,7 @@ public class ServletModuleUsers extends mir.servlet.ServletModule
                try {
                        HashMap withValues = getIntersectingValues(req, mainModule.getStorageObject());
                        String id = mainModule.add(withValues);
-                       SimpleHash mergeData = HTMLTemplateProcessor.makeSimpleHash(mainModule.getById(id));
-                       deliver(req, res, mergeData, templateObjektString);
+                       deliver(req, res, mainModule.getById(id), templateObjektString);
                }
                catch (Exception e) { throw new ServletModuleException(e.toString());}
        }