Skip to content

Commit

Permalink
Update to [26123] this reverse the filtering logic to be the correct way
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.mythtv.org/svn/trunk@26133 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
kormoc committed Sep 5, 2010
1 parent dab5106 commit 5081035
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/tv/classes/Schedule.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public static function &findScheduled() {
foreach (MythBackend::find()->queryProgramRows('QUERY_GETALLPENDING', 2) as $key => $program) {
if ($key === 'offset')
continue;
if ($program[21] != 6)
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 5081035

Please sign in to comment.