From: dave%intrec.com <> Date: Wed, 24 Jan 2001 09:54:42 +0000 (+0000) Subject: Fix for bug 45784: URL field truncated at quote marks. Patch by X-Git-Tag: bugzilla-2.12~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cfb492c4b1cf526db373f84eb92498eafd12cd0b;p=thirdparty%2Fbugzilla.git Fix for bug 45784: URL field truncated at quote marks. Patch by jake@acutex.net --- diff --git a/bug_form.pl b/bug_form.pl index 3fd71c99e5..58f1b6cb2a 100644 --- a/bug_form.pl +++ b/bug_form.pl @@ -161,7 +161,7 @@ if (scalar(@ccList) > 0) { "Remove selected CCs
\n"; } -my $URL = $bug{'bug_file_loc'}; +my $URL = value_quote($bug{'bug_file_loc'}); if (defined $URL && $URL ne "none" && $URL ne "NULL" && $URL ne "") { $URL = "URL:"; @@ -265,7 +265,7 @@ print " $URL - + Summary: