Fix creation at given URIs.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / CreateSonePage.java
index f67cd56..dfd3760 100644 (file)
@@ -47,7 +47,7 @@ public class CreateSonePage extends SoneTemplatePage {
         *            The Sone web interface
         */
        public CreateSonePage(Template template, WebInterface webInterface) {
-               super("createSone.html", template, "Page.CreateSone.Title", webInterface);
+               super("createSone.html", template, "Page.CreateSone.Title", webInterface, false);
        }
 
        //
@@ -65,7 +65,7 @@ public class CreateSonePage extends SoneTemplatePage {
                String insertUri = null;
                if (request.getMethod() == Method.POST) {
                        name = request.getHttpRequest().getPartAsStringFailsafe("name", 100);
-                       if (request.getHttpRequest().getParam("create-from-uri").length() > 0) {
+                       if (request.getHttpRequest().isPartSet("create-from-uri")) {
                                requestUri = request.getHttpRequest().getPartAsStringFailsafe("request-uri", 256);
                                insertUri = request.getHttpRequest().getPartAsStringFailsafe("insert-uri", 256);
                        }