From d2fb2336987af188a739d165c9161f272c4a86d5 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Thu, 4 Dec 2008 16:37:02 -0800 Subject: [PATCH] * remove useless escaping in maybelink, closes #507807 --- Debbugs/CGI.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Debbugs/CGI.pm b/Debbugs/CGI.pm index eef5649..980a71d 100644 --- a/Debbugs/CGI.pm +++ b/Debbugs/CGI.pm @@ -537,7 +537,7 @@ sub maybelink { my ($links,$regex,$join) = @_; if (not defined $regex and not defined $join) { $links =~ s{((?:ftp|http|https)://[\S~-]+?/?)([\)\'\:\.\,]?(?:\s|\.<|$))} - {q().html_escape($1).q().$2}geimo; + {q().html_escape($1).q().$2}geimo; return $links; } $join = ' ' if not defined $join; -- 2.39.2