diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-24 06:40:49 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-24 06:40:49 +0000 |
commit | c65810e08cfb8ba58eda0fa134f91aea22635ef4 (patch) | |
tree | dda5060be8af1e3777d253bb08bbc138467b2fde /templates/show_live_streams.inc.php | |
parent | 591b54daac0d95c51f4f4dd986f68e3523baf9dd (diff) | |
download | ampache-c65810e08cfb8ba58eda0fa134f91aea22635ef4.tar.gz ampache-c65810e08cfb8ba58eda0fa134f91aea22635ef4.tar.bz2 ampache-c65810e08cfb8ba58eda0fa134f91aea22635ef4.zip |
fixed the live stream stuff, and removed references to the genre stuff, and replaced it with tag
Diffstat (limited to 'templates/show_live_streams.inc.php')
-rw-r--r-- | templates/show_live_streams.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_live_streams.inc.php b/templates/show_live_streams.inc.php index 897c34dd..6cbdd72d 100644 --- a/templates/show_live_streams.inc.php +++ b/templates/show_live_streams.inc.php @@ -28,7 +28,7 @@ $web_path = Config::get('web_path'); <col id="col_streamname" /> <col id="col_callsign" /> <col id="col_frequency" /> - <col id="col_genre" /> + <col id="col_tag" /> <col id="col_action" /> </colgroup> <tr class="th-top"> @@ -36,7 +36,7 @@ $web_path = Config::get('web_path'); <th class="cel_streamname"><?php echo Ajax::text('?page=browse&action=set_sort&sort=name',_('Name'),'live_stream_sort_name'); ?></th> <th class="cel_callsign"><?php echo Ajax::text('?page=browse&action=set_sort&sort=call_sign',_('Callsign'),'live_stream_call_sign'); ?></th> <th class="cel_frequency"><?php echo Ajax::text('?page=browse&action=set_sort&sort=frequency',_('Frequency'),'live_stream_frequency'); ?></th> - <th class="cel_genre"><?php echo _('Genre'); ?></th> + <th class="cel_genre"><?php echo _('Tag'); ?></th> <th class="cel_action"><?php echo _('Action'); ?> </th> </tr> <?php @@ -58,7 +58,7 @@ foreach ($object_ids as $radio_id) { <th class="cel_streamname"><?php echo Ajax::text('?page=browse&action=set_sort&sort=name',_('Name'),'live_stream_sort_name_bottom'); ?></th> <th class="cel_callsign"><?php echo Ajax::text('?page=browse&action=set_sort&sort=call_sign',_('Callsign'),'live_stream_call_sign_bottom'); ?></th> <th class="cel_frequency"><?php echo Ajax::text('?page=browse&action=set_sort&sort=frequency',_('Frequency'),'live_stream_frequency_bottom'); ?></th> - <th class="cel_genre"><?php echo _('Genre'); ?></th> + <th class="cel_genre"><?php echo _('Tag'); ?></th> <th class="cel_action"><?php echo _('Action'); ?> </th> </tr> </table> |