diff options
-rw-r--r-- | app/acf-util/roles-html.lsp | 2 | ||||
-rw-r--r-- | app/dispatcherror-html.lsp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/acf-util/roles-html.lsp b/app/acf-util/roles-html.lsp index d61e60a..41ebcc3 100644 --- a/app/acf-util/roles-html.lsp +++ b/app/acf-util/roles-html.lsp @@ -44,7 +44,7 @@ end table.sort(actions) for y,act in pairs(actions) do - print(html.html_escape(act)) + print((html.html_escape(act))) end io.write("<TD></TR>") end diff --git a/app/dispatcherror-html.lsp b/app/dispatcherror-html.lsp index 82f873f..f6e0a22 100644 --- a/app/dispatcherror-html.lsp +++ b/app/dispatcherror-html.lsp @@ -27,4 +27,4 @@ <h1>Alpine Configuration Framework</h1> <p class="errordetail">Dispatch error occured</p> -<p class="hiddendetail">'<%= html.html_escapt(view.controller) %>' does not have a '<%= html.html_escape(view.action) %>' action.</p> +<p class="hiddendetail">'<%= html.html_escape(view.controller) %>' does not have a '<%= html.html_escape(view.action) %>' action.</p> |