Skip Menu |

This queue is for tickets about the SOAP-Lite CPAN distribution.

Report information
The Basics
Id: 63693
Status: resolved
Priority: 0/
Queue: SOAP-Lite

People
Owner: kutterma [...] users.sourceforge.net
Requestors: llap [...] cuckoo.org
Cc:
AdminCc:

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



Subject: Uninitalized value
In: sub as_boolean: ( $value ne 'false' && $value ) ? 'true' : 'false' Should be written as: ( $value && $value ne 'false' ) ? 'true' : 'false' Otherwise you get undefined errors. Thanks Leo
fixed in svn in #380 Thanks for reporting, Martin
fixed in >= 0.713
On Mon Aug 15 13:54:55 2011, MKUTTER wrote: Show quoted text
> fixed in svn in #380 > > Thanks for reporting, > > Martin
Still one of these present, SOAP::Lite.pm, line 307, v.0714 thanks. sub as_boolean { ... ( $value ne 'false' && $value ) ...
fixed in SVN in rev 394
On Tue Oct 25 15:31:46 2011, MKUTTER wrote: Show quoted text
> fixed in SVN in rev 394
Thanks for the fix - is a new SOAP::Lite release planned? (Apologies for posting here - I've just seen the Sourceforge link in the POD now, but couldn't see any reference to a release schedule or anywhere relevant to post this)
Hi, Will be fixed in 0.715 to be released today. Martin