diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/interactive/gtk.pm | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 14b990083..583c2556c 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - allow to prefer kernel-server on x86_64 too +- enable relative links in HTML help - switch from perl-Gtk2-Html2 to perl-Gtk2-WebKit in order to display release notes & help - use HTML help for summary step diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index a1de96ead..646c0b0df 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -758,7 +758,6 @@ my $help_path = "/usr/share/doc/installer-help/"; sub load_from_uri { my ($view, $url) = @_; - $url =~ s/#.*$//; # prevent segfaults on anchors $url = get_html_file($::o, $url); my $str = scalar(cat_($url)); c::set_tagged_utf8($str); |