diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-25 23:55:35 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-25 23:55:35 +0000 |
commit | 9803be045ba3895cc981d5e7e22fd80f80d6544d (patch) | |
tree | 089d4d6e6e8abaa91881bb8d0f19ee6cbde7348a /templates | |
parent | 993a0a7a65f60f0d91b707b342a9367bf8afbbd9 (diff) | |
download | ampache-9803be045ba3895cc981d5e7e22fd80f80d6544d.tar.gz ampache-9803be045ba3895cc981d5e7e22fd80f80d6544d.tar.bz2 ampache-9803be045ba3895cc981d5e7e22fd80f80d6544d.zip |
removed some more references to the genre stuff, added ability to customized what is considered a prefix on albums and artists (requires update of config file) added next and stop to the shoutcast localplay controller
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_song_row.inc.php | 2 | ||||
-rw-r--r-- | templates/show_update_items.inc.php | 28 |
2 files changed, 29 insertions, 1 deletions
diff --git a/templates/show_song_row.inc.php b/templates/show_song_row.inc.php index 0026d5fd..dc463470 100644 --- a/templates/show_song_row.inc.php +++ b/templates/show_song_row.inc.php @@ -25,7 +25,7 @@ <td class="cel_song"><?php echo $song->f_link; ?></td> <td class="cel_artist"><?php echo $song->f_artist_link; ?></td> <td class="cel_album"><?php echo $song->f_album_link; ?></td> -<td class="cel_tags"></td> +<td class="cel_tags"><?php echo $song->f_tags; ?></td> <td class="cel_track"><?php echo $song->f_track; ?></td> <td class="cel_time"><?php echo $song->f_time; ?></td> <?php if (Config::get('ratings')) { ?> diff --git a/templates/show_update_items.inc.php b/templates/show_update_items.inc.php new file mode 100644 index 00000000..25e879e5 --- /dev/null +++ b/templates/show_update_items.inc.php @@ -0,0 +1,28 @@ +<?php +/* + + Copyright (c) Ampache.org + All rights reserved. + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License v2 + as published by the Free Software Foundation + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +show_box_top(_('Starting Update from Tags')); +Catalog::update_single_item($type,$object_id); +?> +<br /> +<strong><?php echo _('Update from Tags Complete'); ?></strong> +<a class="button" href="<?php echo $target_url; ?>"><?php echo _('Continue'); ?></a> +<?php show_box_bottom(); ?> |