diff --git a/shell/acl_security.pl b/shell/acl_security.pl index 93513ebd5..04e95c73d 100755 --- a/shell/acl_security.pl +++ b/shell/acl_security.pl @@ -5,13 +5,9 @@ do 'shell-lib.pl'; # Output HTML for editing security options for the shell module sub acl_security_form { -print " $text{'acl_user'} \n"; -printf " %s\n", - $_[0]->{'user'} ? '' : 'checked', $text{'acl_user_def'}; -printf "\n", - $_[0]->{'user'} ? 'checked' : ''; -print " ", - &user_chooser_button("user")," \n"; +print &ui_table_row($text{'acl_user'}, + &ui_opt_textbox("user", $_[0]->{'user'}, 20, $text{'acl_user_def'})." ". + &user_chooser_button("user")); } # acl_security_save(&options)