diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-04-03 06:10:04 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-04-03 06:10:04 +0000 |
commit | 4af15017a550c2b365b1194430c98295030e9ca6 (patch) | |
tree | 8c437cd9975a6c57d25084535d1899d2df55cdd9 /perl-install | |
parent | 6968cdd405b7c278da255e025362aeff70d73557 (diff) | |
download | drakx-4af15017a550c2b365b1194430c98295030e9ca6.tar drakx-4af15017a550c2b365b1194430c98295030e9ca6.tar.gz drakx-4af15017a550c2b365b1194430c98295030e9ca6.tar.bz2 drakx-4af15017a550c2b365b1194430c98295030e9ca6.tar.xz drakx-4af15017a550c2b365b1194430c98295030e9ca6.zip |
(get_html_file) fix broken help because of s/pt_BR/pt_br/ change in file names (#36774)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/interactive/gtk.pm | 2 |
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; } |