diff options
-rw-r--r-- | dhcp-home-html.lsp | 6 | ||||
-rw-r--r-- | dhcp-listfiles-html.lsp | 6 |
2 files changed, 2 insertions, 10 deletions
diff --git a/dhcp-home-html.lsp b/dhcp-home-html.lsp index 560b2f6..845f6bd 100644 --- a/dhcp-home-html.lsp +++ b/dhcp-home-html.lsp @@ -1,7 +1,7 @@ <% local view, viewlibrary, page_info, session = ... %> <% require("viewfunctions") %> -<% displaycommandresults({"settings", "edithost", "delhost", "createhost", "editsubnet", "delsubnet", "createsubnet", "startstop"}, session) %> +<% displaycommandresults({"settings", "edithost", "delhost", "createhost", "editsubnet", "delsubnet", "createsubnet"}, session) %> <% if viewlibrary and viewlibrary.dispatch_component then viewlibrary.dispatch_component("status") @@ -24,7 +24,3 @@ end %> <% if viewlibrary and viewlibrary.dispatch_component then viewlibrary.dispatch_component("listhosts") end %> - -<% if viewlibrary and viewlibrary.dispatch_component then - viewlibrary.dispatch_component("startstop") -end %> diff --git a/dhcp-listfiles-html.lsp b/dhcp-listfiles-html.lsp index 7446520..89b62de 100644 --- a/dhcp-listfiles-html.lsp +++ b/dhcp-listfiles-html.lsp @@ -2,7 +2,7 @@ require("viewfunctions") %> -<% displaycommandresults({"expert", "startstop"}, session) %> +<% displaycommandresults({"expert"}, session) %> <% if viewlibrary and viewlibrary.dispatch_component then viewlibrary.dispatch_component("status") @@ -26,7 +26,3 @@ end %> </TR> <% end %> </TABLE></DL> - -<% if viewlibrary and viewlibrary.dispatch_component then - viewlibrary.dispatch_component("startstop") -end %> |