summaryrefslogtreecommitdiffstats
path: root/vmail-editusersettings-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'vmail-editusersettings-html.lsp')
-rw-r--r--vmail-editusersettings-html.lsp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vmail-editusersettings-html.lsp b/vmail-editusersettings-html.lsp
index 4efe709..d8acbc6 100644
--- a/vmail-editusersettings-html.lsp
+++ b/vmail-editusersettings-html.lsp
@@ -2,7 +2,7 @@
require("viewfunctions")
%>
-<H1>Settings for <%= html.html_escape(form.value.fullname.value) %> (<%= html.html_escape(form.value.username.value) %>)</H1>
+<H1>Settings for <%= html.html_escape(form.value.firstname.value) %> <%= html.html_escape(form.value.lastname.value) %> (<%= html.html_escape(form.value.username.value) %>)</H1>
<%
form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action
if page_info.action ~= "createuser" then
@@ -10,6 +10,6 @@ require("viewfunctions")
end
form.value["vm-password"].type = "password"
form.value["vm-password-confirm"].type = "password"
- local order = {"username", "fullname", "vm-password", "vm-password-confirm", "vm-mailto", "vm-email-all-messages", "vm-attach-file", "vm-keep-local-after-email", "vm-notify-mailto", "vm-notify-email-all-messages"}
+ local order = {"username", "firstname", "lastname", "vm-password", "vm-password-confirm", "vm-mailto", "vm-email-all-messages", "vm-attach-file", "vm-keep-local-after-email", "vm-notify-mailto", "vm-notify-email-all-messages"}
displayform(form, order)
%>