diff --git a/change-user/index.cgi b/change-user/index.cgi index ee429c38e..351cfaa8c 100755 --- a/change-user/index.cgi +++ b/change-user/index.cgi @@ -34,7 +34,7 @@ if ($access{'lang'}) { &ui_select("lang", $user->{'lang'}, [ map { [ $_->{'lang'}, $_->{'desc'}." (".uc($_->{'lang'}).")" ] } - &list_languages() ])); + &list_languages() ]), undef, [ "valign=top","valign=top" ] ); } if ($access{'theme'}) { @@ -60,7 +60,7 @@ if ($access{'theme'}) { &ui_select("theme", $user->{'theme'}, [ [ '', $text{'index_themedef'} ], map { [ $_->{'dir'}, $_->{'desc'} ] } - @themes ])); + @themes ]), undef, [ "valign=top","valign=top" ]); # Overlay, if any if (@overlays) { @@ -68,7 +68,7 @@ if ($access{'theme'}) { &ui_select("overlay", $user->{'overlay'}, [ [ '', $text{'index_overlaydef'} ], map { [ $_->{'dir'}, $_->{'desc'} ] } - @overlays ])); + @overlays ]), undef, [ "valign=middle","valign=middle" ]); } } @@ -80,7 +80,7 @@ if ($access{'pass'} && &can_change_pass($user)) { [ 0, $text{'index_passset'} ] ])." ". &ui_password("pass", undef, 20)." ". $text{'index_passagain'}." ". - &ui_password("pass2", undef, 20)); + &ui_password("pass2", undef, 20), undef, [ "valign=top","valign=middle" ]); } print &ui_table_end(); diff --git a/webminlog/index.cgi b/webminlog/index.cgi index 3e0fe0968..cb44f8e03 100755 --- a/webminlog/index.cgi +++ b/webminlog/index.cgi @@ -57,7 +57,7 @@ my @opts = ( [ 1, $text{'index_mall'}."
" ], [ 0, $text{'index_module'}." ". &ui_select("module", $in{'module'}, \@mods) ] ); print &ui_table_row($text{'index_smods'}, - &ui_radio("mall", 1, \@opts)); + &ui_radio("mall", 1, \@opts), undef, [ "valign=top","valign=top" ] ); # Dates to search print &ui_table_row($text{'index_stimes'}, @@ -67,11 +67,11 @@ print &ui_table_row($text{'index_stimes'}, [ 3, $text{'index_yesterday'}."
" ], [ 4, $text{'index_week'}."
" ], [ 0, "".&text('index_time', &time_input('from'), - &time_input('to'))."" ] ])); + &time_input('to'))."" ] ]), undef, [ "valign=top","valign=middle" ] ); # Action description to match print &ui_table_row($text{'index_sdesc'}, - &ui_textbox("desc", undef, 40)); + &ui_textbox("desc", undef, 40), undef, [ "valign=middle","valign=middle" ]); # Search modified files and diff contents if ($gconfig{'logfiles'}) { @@ -79,13 +79,13 @@ if ($gconfig{'logfiles'}) { &ui_radio("fall", 1, [ [ 1, $text{'index_fall'}."
" ], [ 0, $text{'index_file'}." ". - &ui_textbox("file", undef, 40) ] ])); + &ui_textbox("file", undef, 40) ] ]), undef, [ "valign=top","valign=top" ]); print &ui_table_row($text{'index_sdiff'}, &ui_radio("dall", 1, [ [ 1, $text{'index_dall'}."
" ], [ 0, $text{'index_diff'}." ". - &ui_textbox("diff", undef, 40) ] ])); + &ui_textbox("diff", undef, 40) ] ]), undef, [ "valign=top","valign=top" ]); } # Remote host @@ -94,12 +94,12 @@ if ($config{'host_search'}) { &ui_radio("wall", 1, [ [ 1, $text{'index_wall'}."
" ], [ 0, $text{'index_whost'}." ". - &ui_textbox("webmin", undef, 30) ] ])); + &ui_textbox("webmin", undef, 30) ] ]), undef, [ "valign=top","valign=top" ]); } # Show full descriptions? print &ui_table_row($text{'index_long'}, - &ui_yesno_radio("long", 0)); + &ui_yesno_radio("long", 0), undef, [ "valign=middle","valign=middle" ]); print &ui_table_end(); print &ui_form_end([ [ undef, $text{'index_search'} ] ]);