summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-04-03 06:10:04 +0000
committerThierry Vignaud <tv@mandriva.org>2008-04-03 06:10:04 +0000
commit4af15017a550c2b365b1194430c98295030e9ca6 (patch)
tree8c437cd9975a6c57d25084535d1899d2df55cdd9
parent6968cdd405b7c278da255e025362aeff70d73557 (diff)
downloaddrakx-backup-do-not-use-4af15017a550c2b365b1194430c98295030e9ca6.tar
drakx-backup-do-not-use-4af15017a550c2b365b1194430c98295030e9ca6.tar.gz
drakx-backup-do-not-use-4af15017a550c2b365b1194430c98295030e9ca6.tar.bz2
drakx-backup-do-not-use-4af15017a550c2b365b1194430c98295030e9ca6.tar.xz
drakx-backup-do-not-use-4af15017a550c2b365b1194430c98295030e9ca6.zip
(get_html_file) fix broken help because of s/pt_BR/pt_br/ change in file names (#36774)
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/interactive/gtk.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 5bbc422e4..4102804fe 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,4 +1,5 @@
- 2008.1 logo (the good one)
+- fix broken help because of s/pt_BR/pt_br/ change in file names (#36774)
Version 10.26 - 2 April 2008
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm
index 2315556fd..25e60329f 100644
--- a/perl-install/interactive/gtk.pm
+++ b/perl-install/interactive/gtk.pm
@@ -720,7 +720,7 @@ sub get_html_file {
map {
my $id = $_;
require lang;
- map { ("$_/$id") } (split ':', lang::getLANGUAGE($o->{locale}{lang})), '';
+ map { ("$_/$id") } map { $_, lc($_) } (split ':', lang::getLANGUAGE($o->{locale}{lang})), '';
} $url;
}