342 | | <td class="x-airdate"><?php echo strftime($_SESSION['date_recorded'], $show->starttime) ?></td> |
343 | | <td class="x-channum"><?php echo $show->channel->channum, ' - ', $show->channel->name ?></td> |
| 342 | <td class="x-airdate"><?php echo strftime($_SESSION['date_recorded'], $show->starttime) ?></td><?php |
| 343 | if ($_SESSION["show_channel_icons"] == true ) { |
| 344 | if (!empty($show->channel->icon)) { |
| 345 | ?><td><a href="<?php echo root ?>tv/channel/<?php echo $show->channel->chanid, '/', $list_starttime ?>" |
| 346 | onmouseover="return wstatus('<?php echo t('Details for') ?>: <?php echo preg_replace("/([\"'])/", '\\\$1', $show->channel->channum.' '.$show->channel->callsign) ?>')" |
| 347 | onmouseout="return wstatus('')"><img src="<?php echo $show->channel->icon ?>" width="42"></a></td><?php |
| 348 | } else {?> |
| 349 | <td><?php echo $show->channel->channum, ' - <nobr>', $show->channel->name ?></nobr></td><?php |
| 350 | } |
| 351 | } else {?> |
| 352 | <td class="x-channum"><?php echo $show->channel->channum, ' - ', $show->channel->name ?></td><?php |
| 353 | }?> |