From ee8b46207648d1bb34c1df16c6d4c755445c5871 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 11 Mar 2009 10:18:14 +0000 Subject: (get_html_file) workaround latest webkit thus fixing displaying help (see mcc bug #47840) --- perl-install/install/NEWS | 2 ++ perl-install/interactive/gtk.pm | 1 + 2 files changed, 3 insertions(+) (limited to 'perl-install') diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index c6d60a570..749bde880 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- fix displaying help (same webkit regression that affected mcc (#47840)) + Version 12.13 - 10 March 2009 - fix selecting packages on cdroms diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index c5ab6c96d..ba7c31a20 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -770,6 +770,7 @@ sub get_html_file { require lang; map { ("$_/$id") } map { $_, lc($_) } (split ':', lang::getLANGUAGE($o->{locale}{lang})), ''; } $url; + $url = "file://$url"; $anchor ? "$url#$anchor" : $url; } -- cgit v1.2.1