Skip Menu |

This queue is for tickets about the Data-ICal CPAN distribution.

Report information
The Basics
Id: 26410
Status: resolved
Priority: 0/
Queue: Data-ICal

People
Owner: Nobody in particular
Requestors: mail [...] kamishima.net
Cc:
AdminCc:

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



Subject: backslash is not escaped
In the _value_as_string routine of the Data::ICal::Property, I found the following code: $value =~ s/\\/\\/gs; This looks meaningless... I think this should be $value =~ s/\\/\\\\/gs;