summaryrefslogtreecommitdiffstats
path: root/vmail-listmessages-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2010-09-13 08:26:10 +0000
committerTed Trask <ttrask01@yahoo.com>2010-09-13 08:26:10 +0000
commit602abbdf57454e72395141094397ef66f3aaad99 (patch)
treebd54bf46e6b867d71ac9ffe5d3e68e0b9663c6f7 /vmail-listmessages-html.lsp
parent6311ffeb8a444f60cae2fd857de771811d2931b9 (diff)
downloadacf-freeswitch-vmail-602abbdf57454e72395141094397ef66f3aaad99.tar.bz2
acf-freeswitch-vmail-602abbdf57454e72395141094397ef66f3aaad99.tar.xz
Split fullname into firstname and lastname fields.
Diffstat (limited to 'vmail-listmessages-html.lsp')
-rw-r--r--vmail-listmessages-html.lsp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmail-listmessages-html.lsp b/vmail-listmessages-html.lsp
index 78687d1..837232c 100644
--- a/vmail-listmessages-html.lsp
+++ b/vmail-listmessages-html.lsp
@@ -8,7 +8,7 @@ if viewlibrary.check_permission("listusers") and (viewlibrary.check_permission("
useroptions = {}
for i,u in ipairs(users.value) do
if u.username ~= session.userinfo.userid then
- useroptions[#useroptions+1] = '<option value="'..html.html_escape(u.username)..'">'..html.html_escape(u.fullname)..' ('..html.html_escape(u.username)..')</option>'
+ useroptions[#useroptions+1] = '<option value="'..html.html_escape(u.username)..'">'..html.html_escape(u.firstname)..' '..html.html_escape(u.lastname)..' ('..html.html_escape(u.username)..')</option>'
end
end
useroptions = table.concat(useroptions)