From 958eb326397a3ad0a7285301dc5c52038916df7c Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Fri, 20 Dec 2019 20:53:53 -0800 Subject: [PATCH] Fix missing brace --- man/acl_security.pl | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 man/acl_security.pl diff --git a/man/acl_security.pl b/man/acl_security.pl new file mode 100755 index 000000000..a46ac9396 --- /dev/null +++ b/man/acl_security.pl @@ -0,0 +1,19 @@ + +do 'man-lib.pl'; + +# acl_security_form(&options) +# Output HTML for editing security options for the acl module +sub acl_security_form +{ +my ($o) = @_; +print &ui_table_row($text{'acl_allow'}, + &ui_yesno_radio("allow", $o->{'allow'})); +} + +# acl_security_save(&options) +# Parse the form for security options for the acl module +sub acl_security_save +{ +my ($o) = @_; +$o->{'allow'} = $in{'allow'}; +}