summaryrefslogtreecommitdiffstats
path: root/iptables-editrule-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2015-06-22 09:07:09 -0400
committerTed Trask <ttrask01@yahoo.com>2015-06-22 09:07:09 -0400
commit941f161d0215da4af11a617be20b386580d45bd5 (patch)
tree718e73bde05384910d5f555a22310628a52585b0 /iptables-editrule-html.lsp
parent42476f1a387e8fd61865f23b5d53fa100dcca09b (diff)
downloadacf-iptables-941f161d0215da4af11a617be20b386580d45bd5.tar.bz2
acf-iptables-941f161d0215da4af11a617be20b386580d45bd5.tar.xz
Fix for Lua 5.2 where 'goto' is now a reserved keyword
Diffstat (limited to 'iptables-editrule-html.lsp')
-rw-r--r--iptables-editrule-html.lsp2
1 files changed, 1 insertions, 1 deletions
diff --git a/iptables-editrule-html.lsp b/iptables-editrule-html.lsp
index 98f3966..aab2cf1 100644
--- a/iptables-editrule-html.lsp
+++ b/iptables-editrule-html.lsp
@@ -26,7 +26,7 @@ htmlviewfunctions.displayformitem(form.value.in_interface)
htmlviewfunctions.displayformitem(form.value.out_interface)
htmlviewfunctions.displayformitem(form.value.source)
htmlviewfunctions.displayformitem(form.value.destination)
-htmlviewfunctions.displayformitem(form.value.goto)
+htmlviewfunctions.displayformitem(form.value["goto"])
htmlviewfunctions.displayformitem(form.value.fragment)
htmlviewfunctions.displayformitem(form.value.set_counters)
htmlviewfunctions.displaysectionend(header_level2)