Skip to content

Commit

Permalink
Fixes #8990, this fixes the case where the recorded page gets stuck d…
Browse files Browse the repository at this point in the history
…isplaying no recordings
  • Loading branch information
kormoc committed Dec 21, 2010
1 parent bef5f44 commit c1ef027
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/tv/recorded.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,14 @@
if ($_REQUEST['recgroup'] && $_REQUEST['title'] && $Groups[$_REQUEST['recgroup']] > 0) {
$warning = t('Showing all programs from the $1 group.', $_REQUEST['recgroup']);
unset($_REQUEST['title']);
unset($_SESSION['title']);
continue;
}
// Catch anything else
$_REQUEST['refresh'] = true;
$warning = t('Showing all programs.');
unset($_REQUEST['title'], $_REQUEST['recgroup']);
unset($_SESSION['title'], $_SESSION['recgroup']);
continue;
}
// Did the best we could to find some programs; let's move on.
Expand Down

1 comment on commit c1ef027

@jbirdjavi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any chance this could get backported to 0.24-fixes? :)

Please sign in to comment.