Skip Menu |

This queue is for tickets about the Email-Template CPAN distribution.

Report information
The Basics
Id: 107965
Status: new
Priority: 0/
Queue: Email-Template

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

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



Subject: check for absolute path not cross-platform compatible
Instead of: if ($path_to_tt2 =~ /^\//) { Please use: use File::Spec::Functions; [...] if (file_name_is_absolute $path_to_tt2) { That check will do the right thing across all OSes known to File::Spec.