summaryrefslogtreecommitdiffstats
path: root/lbu-status-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2012-04-18 00:31:13 +0000
committerTed Trask <ttrask01@yahoo.com>2012-04-18 00:31:13 +0000
commit14a52b1711e4ffa117ea3415c68d9e60fa26ec69 (patch)
treec52eee4e8d4ddae8708212415245bbdf90d2a3a3 /lbu-status-html.lsp
parent6051b3a43d38af1758b88620d7320a3482a23ae6 (diff)
downloadacf-alpine-conf-14a52b1711e4ffa117ea3415c68d9e60fa26ec69.tar.bz2
acf-alpine-conf-14a52b1711e4ffa117ea3415c68d9e60fa26ec69.tar.xz
Updated for viewfunctions changed to htmlviewfunctions
Diffstat (limited to 'lbu-status-html.lsp')
-rw-r--r--lbu-status-html.lsp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lbu-status-html.lsp b/lbu-status-html.lsp
index dc76c8c..932ced1 100644
--- a/lbu-status-html.lsp
+++ b/lbu-status-html.lsp
@@ -1,5 +1,5 @@
<% local view, viewlibrary, pageinfo, session = ...
-require("viewfunctions")
+require("htmlviewfunctions")
%>
<H1>System Info</H1>
@@ -11,11 +11,11 @@ else
view.value.committed.value = "WARNING!\nUntil you commit, you will lose your changes at next reboot/shutdown!"
end
view.value.committed.type = "string"
-displayitem(view.value.committed)
+htmlviewfunctions.displayitem(view.value.committed)
for name,value in pairs(view.value) do
if name ~= "committed" then
- displayitem(value)
+ htmlviewfunctions.displayitem(value)
end
end %>
</DL>