diff options
author | Ted Trask <ttrask01@yahoo.com> | 2011-03-30 14:36:56 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2011-03-30 14:36:56 +0000 |
commit | 4cd35e5830cf23ba7d8d7b1e5e4b71e21b4b0de1 (patch) | |
tree | 6a79912cd53f9c64736b5a4587af9edb57da5724 | |
parent | 48d88fd78420e0eb7aa42735d4567db600f89c58 (diff) | |
download | acf-dhcp-4cd35e5830cf23ba7d8d7b1e5e4b71e21b4b0de1.tar.bz2 acf-dhcp-4cd35e5830cf23ba7d8d7b1e5e4b71e21b4b0de1.tar.xz |
Modified for acf-core-0.13.0
-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 %> |