Hi,
first of all, sorry for the long response time.. (i was too busy when
you reported it, and then unfortunately i forgot about it)
I tried to reproduce it, but i was unable - could you tell me what
Catalyst version and other relevant modules (esp. Catalyst plugins) you use?
Anyways, i fixed the warning (just like you proposed:-) - it does not
hurt to be more cautious.
norbi
On Mon Oct 10 07:05:39 2011, hl42 wrote:
Show quoted text>
> Line 237 in PathPrefix.pm
>
> $prefix = lc $prefix;
>
> produces an unnecessary warning (Use of uninitialized value...) if
> $prefix is undefined. Please change it into:
>
> $prefix = lc $prefix if defined $prefix
>
> or something similar.