Subject: | Bug in Date::Language Greek |
Looks like the initialization of @Dusf is wrong.
@Dsuf = ("\x{03b7}" x 31);
Creates one entry in the array that's 31 utf8 chars long.
Shouldn't it be:
@Dsuf = ("\x{03b7}") x 32;
Creates 32 utf8 1 char entries (0..31)