From bf3665f50d518aee6219b5f4143df01882661f0b Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Tue, 29 May 2018 13:41:18 -0700 Subject: bump version to 20180529.2 --- scripts/undo.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') 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; -- cgit v1.2.3-24-g4f1b