Teleman plugin date issue
Status: Beta
Brought to you by:
jzalas
Date of programmes that are after midnight are incorrect. The reason is regexp in line:
if $hour =~ /0[0-3]{1}:[0-9]{2}/;
that should be:
if $hour =~ /^[0-3]{1}:[0-9]{2}/;
as on teleman website single digit hours aren't preceeded by 0.