in reply to Re: sorting text arrays and ignoring case
in thread sorting text arrays and ignoring case

That's not guaranteed to return the mentioned result. How about:
@items = sort { lc($a) cmp lc($b) || $a cmp $b } @items;