Skip to content

Commit

Permalink
Fixes #10241, this adds a method to refresh the current page on the c…
Browse files Browse the repository at this point in the history
…hannel list

Signed-off-by: Rob Smith <kormoc@mythtv.org>
  • Loading branch information
mythtv-trac authored and kormoc committed Apr 7, 2013
1 parent a6482f7 commit a0bb772
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/tv/tmpl/default/channel.php
Expand Up @@ -31,7 +31,7 @@
</div>
<table id="x-jumpto" class="commandbox commands" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="x-jumpto"><?php echo t('Jump To') ?>:</td>
<td class="x-jumpto"><span class='link' onclick="list_update($('date_select')[$('date_select').selectedIndex].value);"><?php echo t('Jump To') ?>:</span>:</td>
<td class="x-hour"><?php channel_select('onchange="$(\'program_listing\').submit()"', $this_channel->chanid) ?></td>
<td class="x-day"><a href="<?php echo root_url ?>tv/channel/<?php echo $this_channel->chanid, '/', $_SESSION['list_time'] - (24 * 60 * 60) ?>"
><img src="<?php echo skin_url ?>img/left.gif" alt="<?php echo t('leftl'); ?>"></a>
Expand Down
2 changes: 1 addition & 1 deletion modules/tv/tmpl/default/list_data.php
Expand Up @@ -20,7 +20,7 @@
?></div>
<table id="x-jumpto" class="commandbox commands" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="x-jumpto"><?php echo t('Jump To') ?>:</td>
<td class="x-jumpto"><span class='link' onclick="list_update($('date_select')[$('date_select').selectedIndex].value);"><?php echo t('Jump To') ?>:</span>:</td>
<td class="x-hour"><?php hour_select('id="hour_select" onchange="list_update($(\'hour_select\')[$(\'hour_select\').selectedIndex].value);"') ?></td>
<td class="x-day">
<a class="link" onclick="list_update(<?php echo $list_starttime - (24 * 60 * 60); ?>);">
Expand Down
2 changes: 1 addition & 1 deletion modules/tv/tmpl/lite/list.php
Expand Up @@ -26,7 +26,7 @@
<table border="0" cellspacing="0" cellpadding="2">
<tr>

<td nowrap align="center"><?php echo t('Jump To') ?>:&nbsp;&nbsp;</td>
<td nowrap align="center"><span class='link' onclick="list_update($('date_select')[$('date_select').selectedIndex].value);"><?php echo t('Jump To') ?>:</span>:&nbsp;&nbsp;</td>
<td align="right"><?php echo t('Hour') ?>:&nbsp;</td>
<td><select name="hour" style="text-align: right"><?php
for ($h=0;$h<24;$h++) {
Expand Down

0 comments on commit a0bb772

Please sign in to comment.