Skip Menu |

This queue is for tickets about the asterisk-perl CPAN distribution.

Report information
The Basics
Id: 50073
Status: resolved
Priority: 0/
Queue: asterisk-perl

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

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



$res =~ /^([^:]+):\ {0,1}([^\ ].*)$/; $key = $1 if ($1); $val = $2 if ($2); should be $res =~ /^([^:]+):\ {0,1}([^\ ].*)$/; $key = $1 if (defined $1); $val = $2 if (defined $2); otherwise values like Key: 0 will be discarded. ty.
Fix going into release coming out shortly