blob: e9baf5d950d6dfe979bfcf0d2b74f4b8329d11ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-lib_RT_Condition.pm,v 1.1 2022/08/21 20:52:52 markd Exp $
fix required for perl 5.36+
--- lib/RT/Condition.pm.orig 2019-01-31 14:39:47.000000000 +0000
+++ lib/RT/Condition.pm
@@ -198,7 +198,7 @@ sub DESTROY {
# We need to clean up all the references that might maybe get
# oddly circular
- $self->{'TemplateObj'} =undef
+ $self->{'TemplateObj'} = undef;
$self->{'TicketObj'} = undef;
$self->{'TransactionObj'} = undef;
$self->{'ScripObj'} = undef;
|