mirror of
https://github.com/webmin/webmin.git
synced 2026-02-03 06:03:28 +00:00
Fix missing brace
This commit is contained in:
19
man/acl_security.pl
Executable file
19
man/acl_security.pl
Executable file
@@ -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'};
|
||||
}
|
||||
Reference in New Issue
Block a user