diff --git a/dashboard-ui/livetvrecordings.html b/dashboard-ui/livetvrecordings.html
index a737d1dd28..19f5e05606 100644
--- a/dashboard-ui/livetvrecordings.html
+++ b/dashboard-ui/livetvrecordings.html
@@ -9,8 +9,8 @@
Guide
Channels
Recordings
-
Upcoming Timers
-
Series Timers
+
Upcoming Recordings
+
Series Recordings
diff --git a/dashboard-ui/scripts/livetvseriestimers.js b/dashboard-ui/scripts/livetvseriestimers.js
index 03cb8e8242..da6f137bd9 100644
--- a/dashboard-ui/scripts/livetvseriestimers.js
+++ b/dashboard-ui/scripts/livetvseriestimers.js
@@ -53,7 +53,7 @@
html += '
';
- if (timer.RecurrenceType == 'NewProgramEventsAllChannels' || timer.RecurrenceType == 'AllProgramEventsAllChannels') {
+ if (timer.RecordAnyChannel) {
html += 'All Channels';
}
else if (timer.ChannelId) {
|