Skip to content

Commit

Permalink
fix array index that didn't get updated in mythtv:d4dcff374e493
Browse files Browse the repository at this point in the history
  • Loading branch information
ex-nerd committed Nov 25, 2012
1 parent bfae06c commit 3cce0fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/tv/recorded.php
Expand Up @@ -85,7 +85,7 @@
}
// keep track of their names and how many episodes we have recorded
$Total_Programs++;
$Groups[$record[28]]++;
$Groups[$record[29]]++;
// Hide LiveTV and Deleted recordings from the title list
if (($_REQUEST['recgroup'] && $_REQUEST['recgroup'] == $record[28]) || (!$_REQUEST['recgroup'] && $record[28] != 'LiveTV' && $record[28] != 'Deleted'))
$Program_Titles[$record[0]]++;
Expand Down

0 comments on commit 3cce0fb

Please sign in to comment.