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_stream_row.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_stream_row.inc.php')
-rw-r--r-- | templates/show_live_stream_row.inc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_live_stream_row.inc.php b/templates/show_live_stream_row.inc.php index 23e0f9d7..170acf61 100644 --- a/templates/show_live_stream_row.inc.php +++ b/templates/show_live_stream_row.inc.php @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2007 Ampache.org + Copyright (c) Ampache.org All rights reserved. This program is free software; you can redistribute it and/or @@ -25,12 +25,12 @@ <td class="cel_streamname"><?php echo $radio->f_name_link; ?></td> <td class="cel_callsign"><?php echo $radio->f_callsign; ?></td> <td class="cel_frequency"><?php echo $radio->f_frequency; ?></td> -<td class="cel_genre"><?php echo $radio->f_genre; ?></td> +<td class="cel_tag"><?php echo $radio->f_tag; ?></td> <td class="cel_action"> - <?php if ($GLOBALS['user']->has_access('50')) { ?> + <?php if (Access::check('interface','50')) { ?> <?php echo Ajax::button('?action=show_edit_object&type=live_stream&id=' . $radio->id,'edit',_('Edit'),'edit_radio_' . $radio->id); ?> <?php } ?> - <?php if ($GLOBALS['user']->has_access('75')) { ?> + <?php if (Access::check('interface','75')) { ?> <?php echo Ajax::button('?page=browse&action=delete_object&type=live_stream&id=' . $radio->id,'delete',_('Delete'),'delete_radio_' . $radio->id); ?> <?php } ?> </td> |