diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-05 03:32:38 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-05 03:32:38 +0000 |
commit | d24fe88905baf183892ed9fd757e698e56309904 (patch) | |
tree | 0861389b8de13f06bce0fa4c13299b83fba00ae7 /artists.php | |
parent | 9457b75fb16f05347c08b484db6fe2b848efba15 (diff) | |
download | ampache-d24fe88905baf183892ed9fd757e698e56309904.tar.gz ampache-d24fe88905baf183892ed9fd757e698e56309904.tar.bz2 ampache-d24fe88905baf183892ed9fd757e698e56309904.zip |
fixed update from tags for artist and album and fixed clear album art
Diffstat (limited to 'artists.php')
-rw-r--r-- | artists.php | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/artists.php b/artists.php index 276c02d7..aed17c45 100644 --- a/artists.php +++ b/artists.php @@ -55,16 +55,15 @@ switch($_REQUEST['action']) { case 'update_from_tags': - $artist = new Artist($_REQUEST['artist']); + $artist = new Artist($_REQUEST['artist']); - echo "<br /><b>" . _("Starting Update from Tags") . ". . .</b><br />\n"; + show_box_top(_('Starting Update from Tags')); - $catalog = new Catalog(); - $catalog->update_single_item('artist',$_REQUEST['artist']); - - echo "<br /><b>" . _("Update From Tags Complete") . "</b> "; - echo "<a href=\"" . conf('web_path') . "/artists.php?action=show&artist=" . $_REQUEST['artist'] . "\">[" . _("Return") . "]</a>"; + Catalog::update_single_item('artist',$_REQUEST['artist']); + echo "<br /><b>" . _("Update From Tags Complete") . "</b> "; + echo "<a href=\"" . Config::get('web_path') . "/artists.php?action=show&artist=" . $_REQUEST['artist'] . "\">[" . _('Return') . "]</a>"; + show_box_bottom(); break; case 'rename_similar': if (!$user->has_access('100')) { access_denied(); } |