Skip Menu |

This queue is for tickets about the WWW-Salesforce CPAN distribution.

Report information
The Basics
Id: 39126
Status: resolved
Priority: 0/
Queue: WWW-Salesforce

People
Owner: cwhitener [...] gmail.com
Requestors: wdhawes [...] gmail.com (daily)
Cc:
AdminCc:

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



This module currently gives the following warning: Use of uninitialized value in pattern match (m//) at /usr/local/lib/perl5/site_perl/5.8.8/WWW/Salesforce/Simple.pm line 35. The attached patch fixes it.
Subject: Simple.pm.patch
--- /home/will/Simple.pm Tue Sep 9 16:44:21 2008 +++ /home/will/Simple.pm.new Tue Sep 9 16:45:28 2008 @@ -33,7 +33,7 @@ } $limit = 2000 - unless $limit =~ m/^\d+$/ and $limit > 0 and $limit < 2001; + unless defined $limit and $limit =~ m/^\d+$/ and $limit > 0 and $limit < 2001; my @rows = (); #to be returned
Subject: warning in WWW::Salesforce::Simple
Wow. I haven't opened up RT in quite some time. I'm sorry it took me so long to respond, but I'll fix this oversight as soon as possible. I wish I would have looked at RT before the latest release. Thanks for the help, Chase
Resolved with 0.12.