Skip Menu |

This queue is for tickets about the RT-Extension-MandatoryOnTransition CPAN distribution.

Report information
The Basics
Id: 104505
Status: open
Priority: 0/
Queue: RT-Extension-MandatoryOnTransition

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

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



Subject: * -> *
Looks like all that's needed to support * -> * is a new line in this block: my $required = $config{"$from -> $to"} || $config{"* -> $to"} || $config{"$from -> *"} || []; making it my $required = $config{"$from -> $to"} || $config{"* -> $to"} || $config{"$from -> *"} || $config{"* -> *"} || [];
I did a quick test on RT 4.4 and it didn't seem to work. I didn't dig too deeply to sort out why.