Skip to content

Commit 836df63

Browse files
committed
Always display channel number/callsign in the Listings grid.
This allows for easier searchability, and is minimally distracting.
1 parent cb588d8 commit 836df63

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/tv/tmpl/default/list_data.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@
9191
<img src="<?php echo $channel->icon ?>" style="padding:5px;"><br>
9292
<?php } ?>
9393
<?php echo ($_SESSION["prefer_channum"] ? $channel->channum : $channel->callsign), "\n" ?>
94-
<?php if ($_SESSION["show_channel_icons"] == false || empty($channel->icon)) {
94+
<?php /* Always display channel number/callsign for easier searchability. */
95+
if (true || $_SESSION["show_channel_icons"] == false || empty($channel->icon)) {
9596
echo '<br>('.($_SESSION["prefer_channum"] ? $channel->callsign : $channel->channum), ")\n";
9697
} ?>
9798
</a>

0 commit comments

Comments
 (0)