diff options
author | Ted Trask <ttrask01@yahoo.com> | 2013-10-09 21:18:58 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2013-10-09 21:18:58 +0000 |
commit | 6e7e6c4bd7f1892bf1b03c19ef8e665ac07540b0 (patch) | |
tree | 8faf4da756d7874868a28817f3b04d63c34058bd /weblog-status-html.lsp | |
parent | 8721aec349e783755ed8bee0b5a14e6551a0a74a (diff) | |
download | acf-weblog-6e7e6c4bd7f1892bf1b03c19ef8e665ac07540b0.tar.bz2 acf-weblog-6e7e6c4bd7f1892bf1b03c19ef8e665ac07540b0.tar.xz |
Change use of require to work with Lua 5.2
Diffstat (limited to 'weblog-status-html.lsp')
-rw-r--r-- | weblog-status-html.lsp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weblog-status-html.lsp b/weblog-status-html.lsp index 616a075..6b05dfc 100644 --- a/weblog-status-html.lsp +++ b/weblog-status-html.lsp @@ -1,5 +1,5 @@ <% local data, viewlibrary, page_info, session = ... -require("htmlviewfunctions") +htmlviewfunctions = require("htmlviewfunctions") %> <% htmlviewfunctions.displaycommandresults({"createdatabase"}, session, true) %> |