diff options
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 5f009a66b..c19402ac9 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -895,7 +895,7 @@ sub acceptLicense { } 'release-notes.html', 'release-notes.' . arch() . '.html'); # we do not handle links: - $o->{release_notes} =~ s!<a href=".*?">(.*?)</a>!\1!g; + $o->{release_notes} =~ s!<a href=".*?">(.*?)</a>!$1!g; return if $o->{useless_thing_accepted}; |