diff options
author | lado <herrlado@gmail.com> | 2012-03-20 15:44:14 +0100 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2012-03-20 15:44:14 +0100 |
commit | 56614e3092f2f0d5fa7e3d21627df456c9431573 (patch) | |
tree | 9cccd2394324e32b78e9bc74eff598c9dba2ba2d /vdr-vdrmanager | |
parent | 054d7fd22a783649a57b3f3975eeb2416d4989e2 (diff) | |
download | vdr-manager-56614e3092f2f0d5fa7e3d21627df456c9431573.tar.gz vdr-manager-56614e3092f2f0d5fa7e3d21627df456c9431573.tar.bz2 |
recurring info
Diffstat (limited to 'vdr-vdrmanager')
-rw-r--r-- | vdr-vdrmanager/helpers.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/vdr-vdrmanager/helpers.cpp b/vdr-vdrmanager/helpers.cpp index 70342c7..2d1aec2 100644 --- a/vdr-vdrmanager/helpers.cpp +++ b/vdr-vdrmanager/helpers.cpp @@ -576,6 +576,10 @@ string cHelpers::ToText(cTimer * timer) { result += ":"; result += MapSpecialChars(timer->Channel()->GetChannelID().ToString()); + result += ":"; + + result += timer->WeekDays(); + result += "\r\n"; return result; @@ -817,7 +821,7 @@ string cHelpers::UnMapSpecialChars(string text) { } /** - * base on vdr-restfulapi's RecordingLengthInSeconds + * based on vdr-restfulapi's RecordingLengthInSeconds */ int cHelpers::RecordingLengthInSeconds(cRecording* recording) { |