diff options
author | justdave%bugzilla.org <> | 2005-01-30 12:22:27 +0000 |
---|---|---|
committer | justdave%bugzilla.org <> | 2005-01-30 12:22:27 +0000 |
commit | d9e238bc897b7614a81784dbebc69b9a155c9539 (patch) | |
tree | 53c77604819036f28ff7e833e3a6e2514d04883a /contrib | |
parent | c59641d038e2892db2c40047dde929a2207dd297 (diff) | |
download | bugs-d9e238bc897b7614a81784dbebc69b9a155c9539.tar bugs-d9e238bc897b7614a81784dbebc69b9a155c9539.tar.gz bugs-d9e238bc897b7614a81784dbebc69b9a155c9539.tar.bz2 bugs-d9e238bc897b7614a81784dbebc69b9a155c9539.tar.xz bugs-d9e238bc897b7614a81784dbebc69b9a155c9539.zip |
Backing out the checking from bug 257315 until it gets corrected. It prevents new bugs from being filed.
a=justdave
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/bug_email.pl | 6 | ||||
-rw-r--r-- | contrib/jb2bz.py | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/contrib/bug_email.pl b/contrib/bug_email.pl index 6697c5d63..6589401e8 100755 --- a/contrib/bug_email.pl +++ b/contrib/bug_email.pl @@ -38,7 +38,7 @@ # # You need to work with bug_email.pl the MIME::Parser installed. # -# $Id: bug_email.pl,v 1.21 2005/01/28 19:01:28 travis%sedsystems.ca Exp $ +# $Id: bug_email.pl,v 1.22 2005/01/30 04:22:28 justdave%bugzilla.org Exp $ ############################################################### # 02/12/2000 (SML) @@ -1085,7 +1085,7 @@ END my $reporter = ""; my $query = "insert into bugs (\n" . join(",\n", @used_fields ) . - ", bug_status, creation_ts, delta_ts, everconfirmed) values ( "; + ", bug_status, creation_ts, everconfirmed) values ( "; # 'Yuck'. Then again, this whole file should be rewritten anyway... $query =~ s/product/product_id/; @@ -1140,7 +1140,7 @@ END $state = SqlQuote("NEW"); } - $query .= $state . ", \'$bug_when\', \'$bug_when\', $ever_confirmed)\n"; + $query .= $state . ", \'$bug_when\', $ever_confirmed)\n"; # $query .= SqlQuote( "NEW" ) . ", now(), " . SqlQuote($comment) . " )\n"; SendSQL("SELECT userid FROM profiles WHERE login_name=\'$reporter\'"); diff --git a/contrib/jb2bz.py b/contrib/jb2bz.py index ed8231dfc..dbd47ea7a 100644 --- a/contrib/jb2bz.py +++ b/contrib/jb2bz.py @@ -208,7 +208,6 @@ def process_jitterbug(filename): "bug_severity='normal'," \ "bug_status=%s," \ "creation_ts=%s," \ - "delta_ts=%s," \ "short_desc=%s," \ "product=%s," \ "rep_platform='All'," \ @@ -220,7 +219,6 @@ def process_jitterbug(filename): [ current['number'], bug_status, time.strftime("%Y-%m-%d %H:%M:%S", current['date-reported'][:9]), - time.strftime("%Y-%m-%d %H:%M:%S", current['date-reported'][:9]), current['short-description'], product, reporter, |