diff options
author | pb1dft <pb1dft@ampache> | 2006-11-25 22:58:24 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2006-11-25 22:58:24 +0000 |
commit | 0635397ab2bd5afc6789cef56b9a9d87bd52bcfd (patch) | |
tree | 931bc00aac44b959f5ed3d6efc0a673335357dea /templates/show_songs.inc | |
parent | 9d17e8cc950234277f156b91447696a2d40a0c21 (diff) | |
download | ampache-0635397ab2bd5afc6789cef56b9a9d87bd52bcfd.tar.gz ampache-0635397ab2bd5afc6789cef56b9a9d87bd52bcfd.tar.bz2 ampache-0635397ab2bd5afc6789cef56b9a9d87bd52bcfd.zip |
Fixed some stuff on album art added ability to sort albums on name/year in artist.php
Diffstat (limited to 'templates/show_songs.inc')
-rw-r--r-- | templates/show_songs.inc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/show_songs.inc b/templates/show_songs.inc index 396f9848..300749ef 100644 --- a/templates/show_songs.inc +++ b/templates/show_songs.inc @@ -130,20 +130,20 @@ foreach ($song_ids as $song_id) { </a> </td> <td> - <a href="<?php echo $web_path; ?>/flag.php?action=show_flag&type=song&id=<?php echo $song->id; ?>"><?php echo _('Flag'); ?></a> + <a href="<?php echo $web_path; ?>/flag.php?action=show_flag&type=song&id=<?php echo $song->id; ?>"><img src="<?php echo $web_path; ?>/images/icon_flag.gif" "border="0" alt="<?php echo _('Flag'); ?>" title="<?php echo _('Flag'); ?>"/></a> <?php if ($GLOBALS['user']->has_access('100')) { ?> - | <a href="<?php echo $web_path; ?>/admin/flag.php?action=show_edit_song&song=<?php echo $song->id; ?>"><?php echo _('Edit'); ?></a> | + | <a href="<?php echo $web_path; ?>/admin/flag.php?action=show_edit_song&song=<?php echo $song->id; ?>"><img src="<?php echo $web_path; ?>/images/icon_edit.gif" "border="0" alt="<?php echo _('Edit'); ?>" title="<?php echo _('Edit'); ?> "/></a> | <?php if ($song->enabled) { ?> - <a href="<?php echo $web_path; ?>/admin/flag.php?action=disable&song_ids=<?php echo $song->id; ?>"><?php echo _('Disable'); ?></a> + <a href="<?php echo $web_path; ?>/admin/flag.php?action=disable&song_ids=<?php echo $song->id; ?>"><img src="<?php echo $web_path; ?>/images/icon_disable.gif" "border="0" alt="<?php echo _('Disable'); ?>" title="<?php echo _('Disable'); ?>" /></a> <?php } else { ?> - <a href="<?php echo $web_path; ?>/admin/flag.php?action=enabled&song_ids=<?php echo $song->id; ?>"><?php echo _('Enable'); ?></a> + <a href="<?php echo $web_path; ?>/admin/flag.php?action=enabled&song_ids=<?php echo $song->id; ?>"><img src="<?php echo $web_path; ?>/images/icon_enable.gif" "border="0" alt="<?php echo _('Enable'); ?>" title="<?php echo _('Enable'); ?>" /></a> <?php } //status ?> <?php } //access ?> <?php if ($GLOBALS['user']->prefs['download']) { ?> - | <a href="<?php echo $web_path; ?>/download/index.php?action=download&song_id=<?php echo $song->id; ?>&sid=<?php echo scrub_out(session_id()); ?>&fn=<?php echo rawurlencode($song->f_artist_full . " - " . $song->title . "." . $song->type); ?>"><?php echo _('Download'); ?></a> + | <a href="<?php echo $web_path; ?>/download/index.php?action=download&song_id=<?php echo $song->id; ?>&sid=<?php echo scrub_out(session_id()); ?>&fn=<?php echo rawurlencode($song->f_artist_full . " - " . $song->title . "." . $song->type); ?>"><img src="<?php echo $web_path; ?>/images/icon_download.gif" "border="0" alt="<?php echo _('Download'); ?>" title="<?php echo _('Download'); ?>" /></a> <?php } ?> <?php if ($GLOBALS['user']->prefs['direct_link']) { ?> - | <a href="<?php echo scrub_out($song->get_url()); ?>"><?php echo _('Direct Link'); ?></a> + | <a href="<?php echo scrub_out($song->get_url()); ?>"><img src="<?php echo $web_path; ?>/images/icon_link.gif" "border="0" alt="<?php echo _('Direct Link'); ?>" title="<?php echo _('Direct Link'); ?>" /></a> <?php } ?> </td> <?php if(conf('ratings')) { ?> |