]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/pages/orga/CreateOrgForm.java
FIX: affiliation form with associated test cases.
[gigi.git] / src / org / cacert / gigi / pages / orga / CreateOrgForm.java
index 902c745dfcccd4f30abd5efb0007c92690ac417c..32a9ceb7033ebba4a602f729372714ab8c13d813 100644 (file)
@@ -53,7 +53,7 @@ public class CreateOrgForm extends Form {
         l = req.getParameter("L");
         email = req.getParameter("contact");
         if (result != null) {
-            result.update(o, c, st, l);
+            result.update(o, c, st, l, email);
             return true;
         }
         Organisation ne = new Organisation(o, c, st, l, email, LoginPage.getUser(req));
@@ -71,6 +71,7 @@ public class CreateOrgForm extends Form {
         vars.put("C", c);
         vars.put("ST", st);
         vars.put("L", this.l);
+        vars.put("email", email);
         if (isEdit) {
             vars.put("edit", true);
         }