Skip to content

Commit

Permalink
Removes all mention if iPod from master
Browse files Browse the repository at this point in the history
  • Loading branch information
kormoc committed Mar 10, 2011
1 parent 1be0b63 commit d1a8782
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/mythweb/set_session.php
Expand Up @@ -33,7 +33,7 @@
/**/
function template_select($name = 'tmpl', $selected = null) {
echo '<select name="'.$name.'">';
foreach (array('default', 'lite', 'iPod') as $tmpl) {
foreach (array('default', 'lite') as $tmpl) {
// Print the option
echo '<option value="'.html_entities($tmpl).'"';
if ($selected == $tmpl)
Expand Down
2 changes: 1 addition & 1 deletion modules/remote/init.php
Expand Up @@ -9,7 +9,7 @@
*
/**/

if (tmpl == 'default' || tmpl == 'iPod') {
if (tmpl == 'default') {
// Add the module
$Modules['remote'] = array('path' => 'remote',
'sort' => 6,
Expand Down
5 changes: 1 addition & 4 deletions modules/tv/recorded.php
Expand Up @@ -49,10 +49,7 @@
// Return to the row just prior to the one deleted
// (with some fuzz to account for normal screen height
// -- remember that rows are numbered starting at zero)
if (tmpl == 'iPod')
redirect_browser(root_url.'tv/list_recording_groups');
else
redirect_browser(root_url.'tv/recorded?refresh'.($prev_row > 0 ? "#$prev_row" : ''));
redirect_browser(root_url.'tv/recorded?refresh'.($prev_row > 0 ? "#$prev_row" : ''));
// redirect_browser calls exit() on its own
}

Expand Down

0 comments on commit d1a8782

Please sign in to comment.