summaryrefslogtreecommitdiffstats
path: root/artists.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-05 03:32:38 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-05 03:32:38 +0000
commitd24fe88905baf183892ed9fd757e698e56309904 (patch)
tree0861389b8de13f06bce0fa4c13299b83fba00ae7 /artists.php
parent9457b75fb16f05347c08b484db6fe2b848efba15 (diff)
downloadampache-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.php13
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> &nbsp;&nbsp;";
- echo "<a href=\"" . conf('web_path') . "/artists.php?action=show&amp;artist=" . $_REQUEST['artist'] . "\">[" . _("Return") . "]</a>";
+ Catalog::update_single_item('artist',$_REQUEST['artist']);
+ echo "<br /><b>" . _("Update From Tags Complete") . "</b> &nbsp;&nbsp;";
+ echo "<a href=\"" . Config::get('web_path') . "/artists.php?action=show&amp;artist=" . $_REQUEST['artist'] . "\">[" . _('Return') . "]</a>";
+ show_box_bottom();
break;
case 'rename_similar':
if (!$user->has_access('100')) { access_denied(); }