mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
21 lines
399 B
Perl
Executable File
21 lines
399 B
Perl
Executable File
|
|
do 'bandwidth-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_setup'},
|
|
&ui_yesno_radio("setup", $o->{'setup'}));
|
|
}
|
|
|
|
# acl_security_save(&options)
|
|
# Parse the form for security options for the acl module
|
|
sub acl_security_save
|
|
{
|
|
my ($o) = @_;
|
|
$o->{'setup'} = $in{'setup'};
|
|
}
|
|
|