Skip Menu |

This queue is for tickets about the Catalyst-Controller-reCAPTCHA CPAN distribution.

Report information
The Basics
Id: 59465
Status: new
Priority: 0/
Queue: Catalyst-Controller-reCAPTCHA

People
Owner: Nobody in particular
Requestors: RSOD [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: 0.5: Useless use of numeric eq (==) in void context at reCAPTCHA.pm line 49.
Date: Fri, 16 Jul 2010 16:22:25 -0700
To: bug-Catalyst-Controller-reCAPTCHA [...] rt.cpan.org
From: Richard Soderberg <rsod [...] cpan.org>
Hi, this line of code is producing a "Useless use of numeric eq" warning: - $result->{is_valid} == $result->{is_valid}; - return $result->{is_valid}; The following change fixes the warning: + return $result->{is_valid} == $result->{is_valid}; Above patch is for 0.5. - R.