[rt-users] User_Overlay.pm line 1530 - Warning Message

2008-12-10 Thread Duane Hill
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, DATA line 1662.

Re: [rt-users] User_Overlay.pm line 1530 - Warning Message

2008-12-10 Thread Curtis Bruneau
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: I have a new RT v3.8.1 I'm setting up on FreeBSD 7.0. I'm seeing a number of

Re: [rt-users] User_Overlay.pm line 1530 - Warning Message

2008-12-10 Thread Duane Hill
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, DATA line 1662.