summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-08-17 17:06:47 -0700
committerMark Wells <mark@freeside.biz>2013-08-17 17:06:47 -0700
commitdd3008b963344eea451d03094dfe8058db79bd77 (patch)
tree5d25ec3d300692952661b1cc787b20c0d8aaa4fe /FS
parent26d71c2ec4c4034285932ded62581ad2ae5d8f5c (diff)
fix upgrade bug that was causing tickets to spontaneously resolve, #23309
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/TicketSystem.pm5
1 files changed, 0 insertions, 5 deletions
diff --git a/FS/FS/TicketSystem.pm b/FS/FS/TicketSystem.pm
index 3aeadb37f..c1c69fa3f 100644
--- a/FS/FS/TicketSystem.pm
+++ b/FS/FS/TicketSystem.pm
@@ -342,11 +342,6 @@ sub _upgrade_data {
or die $dbh->errstr;
$cve_2013_3373_sth->execute or die $cve_2013_3373_sth->errstr;
- # fix null WillResolve fields to avoid spurious transactions the
- # first time they get updated
- my $fix_null_sql = "UPDATE Tickets SET WillResolve = '1970-01-01 00:00:00' WHERE WillResolve IS NULL";
- $dbh->do($fix_null_sql) or die $dbh->errstr;
-
return;
}