From ae684ff02c38b124709c660e531a6dcd94056803 Mon Sep 17 00:00:00 2001 From: Ilia Ross Date: Sun, 26 Oct 2025 10:36:33 +0200 Subject: [PATCH] Fix shell name is never that long --- acl/edit_unix.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acl/edit_unix.cgi b/acl/edit_unix.cgi index 0f6ff0651..e41d0c20c 100755 --- a/acl/edit_unix.cgi +++ b/acl/edit_unix.cgi @@ -82,7 +82,7 @@ print &ui_table_row($text{'unix_restrict2'}, print &ui_table_row("", &ui_checkbox("shells_deny", 1, $text{'unix_shells'}, $miniserv{'shells_deny'} ? 1 : 0)." ". - &ui_filebox("shells", $miniserv{'shells_deny'} || "/etc/shells", 40)); + &ui_filebox("shells", $miniserv{'shells_deny'} || "/etc/shells", 25)); print &ui_table_end(); print &ui_form_end([ [ undef, $text{'save'} ] ]);