diff options
Diffstat (limited to 'perllib/Page.pm')
-rw-r--r-- | perllib/Page.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perllib/Page.pm b/perllib/Page.pm index e659c0af5..382f65797 100644 --- a/perllib/Page.pm +++ b/perllib/Page.pm @@ -604,6 +604,7 @@ sub display_problem_detail($) { foreach (split /\n{2,}/, $detail) { $out .= '<p>' . ent($_) . '</p>'; } + $out =~ s%(https?://[^\s]+)%<a href="$1">$1</a>%g; return $out; } @@ -682,6 +683,7 @@ sub display_problem_updates($$) { } $out .= '</div>'; } + $out =~ s%(https?://[^\s]+)%<a href="$1">$1</a>%g; return $out; } |