From dae8ab184b7143dbb63179866339b909ab1b5d74 Mon Sep 17 00:00:00 2001 From: acli Date: Mon, 23 Feb 2004 04:26:04 +0000 Subject: [PATCH] Bug that prevented msgid's with French characters from being translated should now be really fixed. --- misc/translator/tmpl_process3.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/translator/tmpl_process3.pl b/misc/translator/tmpl_process3.pl index 4cbe4b6530..7844806a85 100755 --- a/misc/translator/tmpl_process3.pl +++ b/misc/translator/tmpl_process3.pl @@ -205,7 +205,7 @@ if (defined $href) { my $candidate = TmplTokenizer::charset_canon $2; die "Conflicting charsets in msgid: $charset_in vs $candidate\n" if defined $charset_in && $charset_in ne $candidate; - $charset_in = $2; + $charset_in = $candidate; } } } -- 2.39.5