diff options
Diffstat (limited to 'freeswitch-listfiles-html.lsp')
-rw-r--r-- | freeswitch-listfiles-html.lsp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/freeswitch-listfiles-html.lsp b/freeswitch-listfiles-html.lsp index ae47535..f2a2fbe 100644 --- a/freeswitch-listfiles-html.lsp +++ b/freeswitch-listfiles-html.lsp @@ -1,9 +1,9 @@ <% local view, viewlibrary, page_info, session = ... -require("viewfunctions") +require("htmlviewfunctions") %> -<% displaycommandresults({"editfile", "deletefile", "reloadxml"}, session) %> -<% displaycommandresults({"createfile"}, session, true) %> +<% htmlviewfunctions.displaycommandresults({"editfile", "deletefile", "reloadxml"}, session) %> +<% htmlviewfunctions.displaycommandresults({"createfile"}, session, true) %> <% if viewlibrary and viewlibrary.dispatch_component then viewlibrary.dispatch_component("status") @@ -40,7 +40,7 @@ end %> <H2><%= html.html_escape(createform.label) %></H2> <% createform.action = page_info.script .. page_info.prefix .. page_info.controller .. "/createfile" - displayform(createform) + htmlviewfunctions.displayform(createform) end %> <% if viewlibrary.check_permission("reloadxml") then %> |