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> |
344 | | <?php |
| 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 | title="<?php echo t('Details for: $1', html_entities($show->channel->name)) ?>"> |
| 347 | <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 | } |