summaryrefslogtreecommitdiffstats
path: root/templates/show_albums.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-05-14 07:33:26 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-05-14 07:33:26 +0000
commitac8056bad9b8e55ba2296c28a96968d33dfbd003 (patch)
treeca18ce4e5259c70596dcefd9d2b8b6c0ebdd9e29 /templates/show_albums.inc.php
parent641e7de6373bcbf7ffb5ac3a8b737fb31f4f33c7 (diff)
downloadampache-ac8056bad9b8e55ba2296c28a96968d33dfbd003.tar.gz
ampache-ac8056bad9b8e55ba2296c28a96968d33dfbd003.tar.bz2
ampache-ac8056bad9b8e55ba2296c28a96968d33dfbd003.zip
removed some dead scripts, moved stuff around, fiddled with albums page... might be an issue with the catalog add... or I might have just discovered a _ton_ of crappy tags... or a bug in getid3() figuring out which it is, is something for tomorrow
Diffstat (limited to 'templates/show_albums.inc.php')
-rw-r--r--templates/show_albums.inc.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_albums.inc.php b/templates/show_albums.inc.php
index f884b57d..f91203f3 100644
--- a/templates/show_albums.inc.php
+++ b/templates/show_albums.inc.php
@@ -43,10 +43,10 @@ $ajax_url = Config::get('ajax_url');
<tr id="album_<?php echo $album->id; ?>" class="<?php echo flip_class(); ?>">
<td>
<span onclick="ajaxPut('<?php echo Config::get('ajax_url'); ?>?action=basket&amp;type=album&amp;id=<?php echo $album->id; ?>');return true;" >
- <?php echo get_user_icon('add'); ?>
+ <?php echo get_user_icon('add','',_('Add')); ?>
</span>
<span onclick="ajaxPut('<?php echo Config::get('ajax_url'); ?>?action=basket&amp;type=album_random&amp;id=<?php echo $album->id; ?>');return true;" >
- <?php echo get_user_icon('random'); ?>
+ <?php echo get_user_icon('random','',_('Random')); ?>
</span>
</td>
<td><?php echo $album->f_name_link; ?></td>
@@ -55,10 +55,10 @@ $ajax_url = Config::get('ajax_url');
<td><?php echo $album->year; ?></td>
<td>
<a href="<?php echo Config::get('web_path'); ?>/batch.php?action=album&amp;id=<?php echo $album->id; ?>">
- <?php echo get_user_icon('batch_download'); ?>
+ <?php echo get_user_icon('batch_download','',_('Batch Download')); ?>
</a>
<span onclick="ajaxPut('<?php echo Config::get('ajax_url'); ?>?action=album&amp;type=edit&amp;id=<?php echo $album->id; ?>');return true;" >
- <?php echo get_user_icon('edit'); ?>
+ <?php echo get_user_icon('edit','',_('Edit')); ?>
</span>
</td>
</tr>