Skip to content

Commit

Permalink
Fixes #10790, this fixes an error with using uninitialized arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
kormoc committed Mar 25, 2013
1 parent de9b00d commit 567cc78
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/tv/tmpl/default/recorded.php
Expand Up @@ -95,6 +95,8 @@
</tr><?php
$row = 0;
$section = -1;
$row_count = array();
$row_section = array();

$prev_group = '';
$cur_group = '';
Expand Down
2 changes: 2 additions & 0 deletions modules/tv/tmpl/lite/recorded.php
Expand Up @@ -99,6 +99,8 @@
</tr><?php
$row = 0;
$section = -1;
$row_count = array();
$row_section = array();

$prev_group = '';
$cur_group = '';
Expand Down

0 comments on commit 567cc78

Please sign in to comment.