summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-01-15 20:44:17 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-01-15 20:44:17 +0000
commit883a1d60d3993f606131108d8c5675617d94bc82 (patch)
tree213d9af47987ef68608217acc20bcd2726e9304b /templates
parent43cc00bb87743334aab8743eef056303ec126e1a (diff)
downloadampache-883a1d60d3993f606131108d8c5675617d94bc82.tar.gz
ampache-883a1d60d3993f606131108d8c5675617d94bc82.tar.bz2
ampache-883a1d60d3993f606131108d8c5675617d94bc82.zip
speed up amazon gather and fixed some logic issues, and switched to disks for the download icons
Diffstat (limited to 'templates')
-rw-r--r--templates/show_albums.inc2
-rw-r--r--templates/show_artist.inc2
-rw-r--r--templates/show_genres.inc.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_albums.inc b/templates/show_albums.inc
index 5ebdebf0..b24804b1 100644
--- a/templates/show_albums.inc
+++ b/templates/show_albums.inc
@@ -65,7 +65,7 @@ foreach ($albums as $album) {
</a>
<?php if (batch_ok()) { ?>
<a href="<?php echo $web_path; ?>/batch.php?action=alb&amp;id=<?php echo $album->id; ?>">
- <?php echo get_user_icon('download'); ?>
+ <?php echo get_user_icon('batch_download'); ?>
</a>
<?php } ?>
<?php if ($GLOBALS['user']->has_access('50')) { ?>
diff --git a/templates/show_artist.inc b/templates/show_artist.inc
index 57d4e415..593f4188 100644
--- a/templates/show_artist.inc
+++ b/templates/show_artist.inc
@@ -67,7 +67,7 @@ foreach ($albums as $album) {
</a>
<?php if (batch_ok()) { ?>
<a href="<?php echo $web_path; ?>/batch.php?action=alb&amp;id=<?php echo $album->id; ?>">
- <?php echo get_user_icon('download'); ?>
+ <?php echo get_user_icon('batch_download'); ?>
</a>
<?php } ?>
<?php if ($GLOBALS['user']->has_access('100')) { ?>
diff --git a/templates/show_genres.inc.php b/templates/show_genres.inc.php
index 0ffd7492..59daf51d 100644
--- a/templates/show_genres.inc.php
+++ b/templates/show_genres.inc.php
@@ -52,7 +52,7 @@ foreach ($genres as $genre) {
</a>
<?php if (batch_ok()) { ?>
<a href="<?php echo $genre->download_link; ?>">
- <?php echo get_user_icon('download'); ?>
+ <?php echo get_user_icon('batch_download'); ?>
</a>
<?php } ?>
</td>