diff options
author | cyeh%bluemartini.com <> | 2000-08-31 04:32:43 +0000 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2000-08-31 04:32:43 +0000 |
commit | 6fc3ee113391a6a76aa28248b9d75ac6439fe3e6 (patch) | |
tree | 7e531a796dade0c1ae22e316e400ded09b47ed54 /post_bug.cgi | |
parent | fix for 50698: parameter for sendmail deferred mode (diff) | |
download | bugzilla-6fc3ee113391a6a76aa28248b9d75ac6439fe3e6.tar.gz bugzilla-6fc3ee113391a6a76aa28248b9d75ac6439fe3e6.tar.bz2 bugzilla-6fc3ee113391a6a76aa28248b9d75ac6439fe3e6.zip |
fix for 37684 and 42609: trying to deal with malformed url's in the URL field
during bug entry. instead of trying to be really intelligent over what a valid
url field is, or doing any kind of complicated regexping and forcing http://
on everyone, what we do instead is pre-seed enter_bug.cgi bug_file_loc with http://
in the text field. if that is all there is in the field when we are in post_bug.cgi,
then the value gets set to null (no URL entered into the new bug form). this allows
for you to enter in any valid url that you want, but also make it obvious that
http:// should be there for http:// urls at bug entry time
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/post_bug.cgi b/post_bug.cgi index 3f933e2d2..a9878ba6a 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -178,7 +178,21 @@ VALUES ( "; foreach my $field (@used_fields) { - $query .= SqlQuote($::FORM{$field}) . ",\n"; +# fix for 42609. if there is a http:// only in bug_file_loc, strip +# it out and send an empty value. + if ($field eq 'bug_file_loc') { + if ($::FORM{$field} eq 'http://') { + $::FORM{$field} = ""; + $query .= SqlQuote($::FORM{$field}) . ",\n"; + next; + } + else { + $query .= SqlQuote($::FORM{$field}) . ",\n"; + } + } + else { + $query .= SqlQuote($::FORM{$field}) . ",\n"; + } } my $comment = $::FORM{'comment'}; |