diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-09-04 22:27:40 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-05-14 15:50:59 -0700 |
commit | 88221aab94693778dcf8173ef2bc55946c95f710 (patch) | |
tree | aeb49353323eb62e68a075727c242eac9129e4a0 /rt/lib | |
parent | bc902905984f85eab84fee1bd9adfe98b022e660 (diff) |
from rt branch perl-5.18-compat, http://www.gossamer-threads.com/lists/rt/commit/117511
Diffstat (limited to 'rt/lib')
-rw-r--r-- | rt/lib/RT/Config.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rt/lib/RT/Config.pm b/rt/lib/RT/Config.pm index 07f4aafa8..b97802f7a 100644 --- a/rt/lib/RT/Config.pm +++ b/rt/lib/RT/Config.pm @@ -1233,6 +1233,7 @@ sub SetFromConfig { $ref_type = 'SCALAR' if $ref_type eq 'REF'; my $entry_ref = *{$entry}{ $ref_type }; + next if ref $entry_ref && ref $entry_ref ne ref $ref; next unless $entry_ref; # if references are equal then we've found |