Skip to content

Commit

Permalink
Fixes #8457, this fixes an issue with schduled programs of recstatus_…
Browse files Browse the repository at this point in the history
…notlisted

git-svn-id: http://svn.mythtv.org/svn/trunk@26123 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
kormoc committed Sep 5, 2010
1 parent 292a252 commit e728aea
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/tv/classes/Schedule.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ public static function &findScheduled() {
foreach (MythBackend::find()->queryProgramRows('QUERY_GETALLPENDING', 2) as $key => $program) {
if ($key === 'offset')
continue;
if ($program[21] != 6)
continue;
// Normal entry: $scheduledRecordings[callsign][starttime][]
self::$scheduledRecordings[$program[6]][$program[10]][] =& new Program($program);
}
Expand Down

0 comments on commit e728aea

Please sign in to comment.