diff options
Diffstat (limited to 'cron-listjobs-html.lsp')
-rw-r--r-- | cron-listjobs-html.lsp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cron-listjobs-html.lsp b/cron-listjobs-html.lsp index 6cc4463..79446a6 100644 --- a/cron-listjobs-html.lsp +++ b/cron-listjobs-html.lsp @@ -1,8 +1,8 @@ <% local view, viewlibrary, page_info, session = ... %> -<% require("viewfunctions") %> +<% require("htmlviewfunctions") %> -<% displaycommandresults({"editjob", "deletejob", "movejob"}, session) %> -<% displaycommandresults({"createjob"}, session, true) %> +<% htmlviewfunctions.displaycommandresults({"editjob", "deletejob", "movejob"}, session) %> +<% htmlviewfunctions.displaycommandresults({"createjob"}, session, true) %> <% if viewlibrary and viewlibrary.dispatch_component then viewlibrary.dispatch_component("status") |