summaryrefslogtreecommitdiffstats
path: root/vmail-listmessages-html.lsp
diff options
context:
space:
mode:
authorZach LeBar <zach@zachlebar.com>2012-02-28 18:47:59 +0000
committerZach LeBar <zach@zachlebar.com>2012-02-28 18:47:59 +0000
commite5e9fc6fe1bb44cde346a6ae7c01ac98ec4c0ddf (patch)
tree6a9e4717fca0532c371cfe95eba0b15adae1192f /vmail-listmessages-html.lsp
parent774acc0d56664daa4074690c0b5158a8b4f3ec68 (diff)
downloadacf-freeswitch-vmail-master.tar.bz2
acf-freeswitch-vmail-master.tar.xz
Change vmail-controller.lua to use new handle_form() functions found in acf_www-controller.lua instead of the controllerfunctions.lua version and also instead of redirect_to_referrer(). Made corresponding changes to vmail-model.lua to make everything work.HEADmaster
Diffstat (limited to 'vmail-listmessages-html.lsp')
-rw-r--r--vmail-listmessages-html.lsp6
1 files changed, 3 insertions, 3 deletions
diff --git a/vmail-listmessages-html.lsp b/vmail-listmessages-html.lsp
index 9ed9b56..23e6379 100644
--- a/vmail-listmessages-html.lsp
+++ b/vmail-listmessages-html.lsp
@@ -217,7 +217,7 @@ end
" method="POST">
<input class="hidden" type="hidden" name="redir" value="<%= html.html_escape(page_info.orig_action) %>" >
<input class="hidden" type="hidden" name="message" value="" >
- <input class="submit" type="submit" value="Delete">
+ <input class="submit" type="submit" name="submit" value="Delete">
</form>
<% end %>
<% if viewlibrary.check_permission("forwardmessage") or viewlibrary.check_permission("forwardmymessage") then %>
@@ -226,7 +226,7 @@ end
" method="POST">
<input class="hidden" type="hidden" name="redir" value="<%= html.html_escape(page_info.orig_action) %>" >
<input class="hidden" type="hidden" name="message" value="" >
- <input class="submit" type="submit" value="Forward">
+ <input class="submit" type="submit" name="submit" value="Forward">
<select name="newuser" style="width:auto;"><%= (useroptions or "") %></select>
</form>
<% end %>
@@ -236,7 +236,7 @@ end
" method="POST">
<input class="hidden" type="hidden" name="redir" value="<%= html.html_escape(page_info.orig_action) %>" >
<input class="hidden" type="hidden" name="message" value="" >
- <input class="submit" type="submit" value="E-mail">
+ <input class="submit" type="submit" name="submit" value="E-mail">
<input class="text" type="text" name="address" value="" style="width:auto;">
</form>
<% end %>