mirror of
https://github.com/webmin/webmin.git
synced 2026-02-03 06:03:28 +00:00
Commands are in upper case
This commit is contained in:
@@ -45,11 +45,13 @@ print &ui_hidden("file", $in{'file'});
|
||||
print &ui_table_start($text{'lserv_title'}, undef, 2);
|
||||
|
||||
print &ui_table_row($text{'lserv_cmd'},
|
||||
&ui_select("cmd", [ map { lc($_) } @{$l->{'words'}} ],
|
||||
[ 'cwd', 'mkd', 'rnfr', 'dele', 'rmd', 'retr', 'stor' ],
|
||||
&ui_select("cmd",
|
||||
[ map { uc($_) } @{$l->{'words'}} ],
|
||||
[ map { uc($_) } ('cwd', 'mkd', 'rnfr', 'dele', 'rmd', 'retr', 'stor') ],
|
||||
7, 1)."\n".
|
||||
&ui_select("cmd", [ map { lc($_) } @{$l->{'words'}} ],
|
||||
[ 'site_chmod', 'read', 'write', 'dirs', 'login', 'all' ],
|
||||
&ui_select("cmd",
|
||||
[ map { uc($_) } @{$l->{'words'}} ],
|
||||
[ map { uc($_) } ('site_chmod', 'read', 'write', 'dirs', 'login', 'all') ],
|
||||
7, 1));
|
||||
|
||||
print &ui_table_end();
|
||||
|
||||
Reference in New Issue
Block a user