diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-09-25 03:35:08 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-09-25 03:35:08 +0000 |
commit | 4fecf43894deb10a980441edf72dfa567b64a23d (patch) | |
tree | 4bd468edb74ec28c648609baae6d9aa0a94e2b8c /templates/show_live_stream_row.inc.php | |
parent | 0dce31de404c46555b0c0d9c58297b506e50e4f8 (diff) | |
download | ampache-4fecf43894deb10a980441edf72dfa567b64a23d.tar.gz ampache-4fecf43894deb10a980441edf72dfa567b64a23d.tar.bz2 ampache-4fecf43894deb10a980441edf72dfa567b64a23d.zip |
- Added ability to delete radio and playlist
- Tweaked Classic CSS to fix issue with larger fonts
- Fixed some javascript update issues due to quoting on the catalog
processes
- Fixed display of the MOTD
Diffstat (limited to 'templates/show_live_stream_row.inc.php')
-rw-r--r-- | templates/show_live_stream_row.inc.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/show_live_stream_row.inc.php b/templates/show_live_stream_row.inc.php index 77003371..773b1d35 100644 --- a/templates/show_live_stream_row.inc.php +++ b/templates/show_live_stream_row.inc.php @@ -30,4 +30,7 @@ <?php if ($GLOBALS['user']->has_access('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 echo Ajax::button('?page=browse&action=delete_object&type=live_stream&id=' . $radio->id,'delete',_('Delete'),'delete_radio_' . $radio->id); ?> + <?php } ?> </td> |