From: John Mandereau Date: Sun, 10 Jan 2010 23:49:34 +0000 (+0100) Subject: Web: really read search-box HTML file in UTF-8 X-Git-Tag: release/2.13.11-1~29 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5f03f8603e38802a1c38cf7a85a1c833ccfc2c39;p=lilypond.git Web: really read search-box HTML file in UTF-8 --- diff --git a/Documentation/lilypond-texi2html.init b/Documentation/lilypond-texi2html.init index 938d77fde8..7bea5ad3ac 100644 --- a/Documentation/lilypond-texi2html.init +++ b/Documentation/lilypond-texi2html.init @@ -1189,7 +1189,7 @@ sub lilypond_generate_page_toc_body($) open FILE, "$ENV{TOP_SRC_DIR}/Documentation/$lang/$name.ihtml" or open FILE, "$ENV{TOP_SRC_DIR}/Documentation/$name.ihtml" or die "no such file: $name.ihtml: $!"; - my $search_string = ; + my $search_string = decode ('UTF-8', ); $search_string = "
  • \n" . $search_string . "
  • \n"; push (@toc_entries, $search_string); close FILE;