User_Overlay.pm line 1530 - Warning Message

I have a new RT v3.8.1 I’m setting up on FreeBSD 7.0. I’m seeing a number
of log lines in the Apache log as:

[Wed Dec 10 20:07:58 2008] [warning]: Use of uninitialized value in
numeric eq (==) at /usr/local/rt3/bin/…/lib/RT/User_Overlay.pm line 1530,
line 1662. (/usr/local/rt3/bin/…/lib/RT/User_Overlay.pm:1530)

The list archive didn’t turn much up just doing a search on
’User_Overlay’. Nor did a Google search show anything relevant.

Do I need to be concerned with the warning? So far I haven’t noticed any
issues. Then again, I haven’t done hardly anything with the install yet.

-d

That’s your typical perl warning for using undef values, in a condition
check or whatever. There’s ways to get around them while coding by
checking defined first but you can basically ignore them.

Duane Hill wrote:

Duane Hill wrote:

I have a new RT v3.8.1 I’m setting up on FreeBSD 7.0. I’m seeing a number
of log lines in the Apache log as:

[Wed Dec 10 20:07:58 2008] [warning]: Use of uninitialized value in numeric
eq (==) at /usr/local/rt3/bin/…/lib/RT/User_Overlay.pm line 1530,
line 1662. (/usr/local/rt3/bin/…/lib/RT/User_Overlay.pm:1530)

The list archive didn’t turn much up just doing a search on ‘User_Overlay’.
Nor did a Google search show anything relevant.

Do I need to be concerned with the warning? So far I haven’t noticed any
issues. Then again, I haven’t done hardly anything with the install yet.

Curtis Bruneau wrote:

That’s your typical perl warning for using undef values, in a condition check
or whatever. There’s ways to get around them while coding by checking defined
first but you can basically ignore them.

Thanks for the clarification.