diff --git a/ui-lib.pl b/ui-lib.pl index 7ac4fde17..532dbedc3 100755 --- a/ui-lib.pl +++ b/ui-lib.pl @@ -1442,7 +1442,7 @@ generated by ui_buttons_row. Some example code : sub ui_buttons_start { return &theme_ui_buttons_start(@_) if (defined(&theme_ui_buttons_start)); -return "\n"; +return "
\n
"; } =head2 ui_buttons_end @@ -1453,7 +1453,7 @@ Returns HTML for the end of a block started by ui_buttons_start. sub ui_buttons_end { return &theme_ui_buttons_end(@_) if (defined(&theme_ui_buttons_end)); -return "
\n"; +return "\n"; } =head2 ui_buttons_row(script, button-label, description, [hiddens], [after-submit], [before-submit]) @@ -1483,12 +1483,13 @@ if (ref($hiddens)) { } return "
\n". $hiddens. + "". " ". "\n". "\n". + $desc."
". ($before ? $before." " : ""). &ui_submit($label).($after ? " ".$after : "")."". - $desc."
\n". "
\n"; } diff --git a/web-lib-funcs.pl b/web-lib-funcs.pl index 8dbf649a0..9648af860 100755 --- a/web-lib-funcs.pl +++ b/web-lib-funcs.pl @@ -7258,8 +7258,8 @@ sub help_search_link if (&foreign_available("man") && !$tconfig{'nosearch'}) { my $for = &urlize(shift(@_)); return "". + join("&", map { "section=$_" } @_)."&". + "for=$for&exact=1&check=".&get_module_name()."'>". $text{'helpsearch'}."\n"; } else {