diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt
index 6d26a6f6c..b4c76cc5c 100644
--- a/docs/changelog/7.x.x.txt
+++ b/docs/changelog/7.x.x.txt
@@ -8,6 +8,7 @@
earlier than 7.3.8.
- fix: Rich Text Editor - Add Asset Tree Link doesn't work with images
- fix: Calendar Next / Previous when startTime was involved (Jukka Raimovaara / Axxion Oy)
+ - fix: Creating users with same e-mail address doesn't work.
7.3.9
- fix: SQL Form and big table imports
diff --git a/docs/upgrades/templates-7.3.10/auth-webgui-createAccount.tmpl b/docs/upgrades/templates-7.3.10/auth-webgui-createAccount.tmpl
new file mode 100644
index 000000000..ea636c5e3
--- /dev/null
+++ b/docs/upgrades/templates-7.3.10/auth-webgui-createAccount.tmpl
@@ -0,0 +1,59 @@
+#PBtmpl0000000000000011
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+
+
+ |
+ |
+
+
+ |
+ |
+
+
+
+ |
+ |
+
+
+
+
+ |
+ |
+
+
+
+ | |
+
+
+ |
+
+
+
+
+
+~~~
+
+
diff --git a/lib/WebGUI/Auth/WebGUI.pm b/lib/WebGUI/Auth/WebGUI.pm
index e4db93798..270e6a46f 100644
--- a/lib/WebGUI/Auth/WebGUI.pm
+++ b/lib/WebGUI/Auth/WebGUI.pm
@@ -190,8 +190,8 @@ sub createAccountSave {
$error .= $temp;
return $self->createAccount($error) unless ($error eq "");
- #If Email address is not unique, a warning is displayed
- if($warning ne "" && !$self->session->form->process("confirm")){
+ # If Email address is not unique, a warning is displayed
+ if ($warning ne "" && !$self->session->form->process("confirm")) {
return $self->createAccount(''.$i18n->get(1078).'', 1);
}
diff --git a/lib/WebGUI/i18n/English/WebGUI.pm b/lib/WebGUI/i18n/English/WebGUI.pm
index 3d0865c1c..13706e2c1 100644
--- a/lib/WebGUI/i18n/English/WebGUI.pm
+++ b/lib/WebGUI/i18n/English/WebGUI.pm
@@ -2509,7 +2509,8 @@ div.tabs {
},
'1078' => {
- message => q|There is already a user of this system with the email address you've entered. Press "Save" if you still wish to create this user|,
+ message => q|There is already a user of this system with the email address you've entered.
+ Please re-complete the form and press "Save" if you still wish to create this user|,
lastUpdated => 1067951807
},