diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-31 23:16:58 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-31 23:16:58 +0000 |
commit | 3ac90131cee1432d8278cdeff47961a50d8c7125 (patch) | |
tree | f9854f3bd5e4f174704ab1b804c0b26e4910368b /admin | |
parent | a145e33a37948eda1d83e0272ee46faf6148d0e7 (diff) | |
download | ampache-3ac90131cee1432d8278cdeff47961a50d8c7125.tar.gz ampache-3ac90131cee1432d8278cdeff47961a50d8c7125.tar.bz2 ampache-3ac90131cee1432d8278cdeff47961a50d8c7125.zip |
* Updated CSS to improve compatibiliy and make appearance more consistant (Thx Spocky)
* Fixed some issues with the Amazon Album art gathering created when I re-wrote it
Diffstat (limited to 'admin')
-rw-r--r-- | admin/catalog.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/admin/catalog.php b/admin/catalog.php index 36aa4a15..d103ecae 100644 --- a/admin/catalog.php +++ b/admin/catalog.php @@ -253,13 +253,12 @@ switch ($_REQUEST['action']) { break; case 'gather_album_art': flush(); - $catalogs = $catalog->get_catalogs(); foreach ($catalogs as $data) { - echo "<div class=\"confirmation-box\"><b>" . _("Starting Album Art Search") . ". . .</b><br /><br />\n"; + echo "<div class=\"confirmation-box\"><b>" . _('Starting Album Art Search') . ". . .</b><br /><br />\n"; echo _('Searched') . ": <span id=\"count_art_" . $data->id . "\">" . _('None') . "</span><br />"; $data->get_album_art(); - echo "<b>" . _("Album Art Search Finished") . ". . .</b></div>\n"; + echo "<b>" . _('Album Art Search Finished') . ". . .</b></div>\n"; } $url = conf('web_path') . '/admin/index.php'; $title = _('Album Art Search Finished'); |