summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-05-29 22:41:18 +0200
committerGitHub <noreply@github.com>2018-05-29 22:41:18 +0200
commitbf3665f50d518aee6219b5f4143df01882661f0b (patch)
tree70f4d9f5dc3d29d45d17d5da268b9f1d47b6fc39 /scripts
parent283e9a03efc9185e1a86e2ea2de3b6693a42224b (diff)
downloadbugzilla-bf3665f50d518aee6219b5f4143df01882661f0b.tar.gz
bugzilla-bf3665f50d518aee6219b5f4143df01882661f0b.tar.xz
bump version to 20180529.2
Diffstat (limited to 'scripts')
-rw-r--r--scripts/undo.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/undo.pl b/scripts/undo.pl
index 5de3104fa..24d6f594b 100644
--- a/scripts/undo.pl
+++ b/scripts/undo.pl
@@ -114,10 +114,10 @@ sub undo {
my $del_comments = $dbh->prepare('DELETE FROM longdescs WHERE comment_id = ?');
my $del_activity = $dbh->prepare('DELETE FROM bugs_activity WHERE id = ?');
foreach my $comment (@{ $action->{remove_comments}}) {
- $del_comments->execute($comment->{id}) or die "failed to delete comment $c->{id}";
+ $del_comments->execute($comment->{id}) or die "failed to delete comment $comment->{id}";
}
foreach my $activity (@{ $action->{remove_activities}}) {
- $del_activity->execute($activity->{id}) or die "failed to delete comment $a->{id}";
+ $del_activity->execute($activity->{id}) or die "failed to delete comment $activity->{id}";
}
tag_for_recount_from_bug($bug_id);
$dbh->bz_commit_transaction;