2017-01-26 Andrew Ruthven
Update the Copyright years.
+ Decode UTF-8 characters when we're getting data using MythTV::Program,
+ thank you Illés Solfor submitting a patch to fix Schedule Conflicts.
2016-09-09 Andrew Ruthven
Fix a bug where it wasn't possible to disable skipping idle
- Julian Gilbey - Fixing up some errors in reporting the next scheduled
recording.
- Göran Uddeborg- Reporting the DateCalc behaviour change.
+ - Illés Sol - UTF-8 character handling from MythTV::Program.
- The Debian translators - Especially the Portuguese guys - you rock!
- All the MythTV developers for working on a great bit of software
);
my $str = substitute_vars($block, \%vars);
- push @lines, $str
+ push @lines, decode('UTF-8', $str)
if defined $str;
}
}
);
my $str = substitute_vars($block, \%vars);
- push @lines, $str
+ push @lines, decode('UTF-8', $str)
if defined $str;
# Don't do more work than is required.