diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-19 01:23:35 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-19 01:23:35 +0000 |
commit | 49f48af532c2d3196d94b444c3514bdb1a499436 (patch) | |
tree | 253259963084d489364332a98762f2ae8116d5b7 /templates/show_artist.inc | |
parent | 7206d2c97bce26f10daf9a4bdc662c261d461799 (diff) | |
download | ampache-49f48af532c2d3196d94b444c3514bdb1a499436.tar.gz ampache-49f48af532c2d3196d94b444c3514bdb1a499436.tar.bz2 ampache-49f48af532c2d3196d94b444c3514bdb1a499436.zip |
fixed add to playlists from albums, and multi-artist album display flaw
Diffstat (limited to 'templates/show_artist.inc')
-rw-r--r-- | templates/show_artist.inc | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/templates/show_artist.inc b/templates/show_artist.inc index 1b6609d6..aab2f48b 100644 --- a/templates/show_artist.inc +++ b/templates/show_artist.inc @@ -47,13 +47,13 @@ $artist_id = $artist->id; <table class="border" cellspacing="0" cellpadding="0" border="0"> <tr class="table-header"> <th align="center"> - <a href="#" onclick="check_songs(); return false;"><?php print _("Select"); ?></a> + <a href="#" onclick="check_songs(); return false;"><?php echo _("Select"); ?></a> </th> - <th><?php print _("Cover"); ?></th> - <th><?php print _("Album Name"); ?></th> - <th><?php print _("Album Year"); ?></th> - <th><?php print _("Total Tracks"); ?></th> - <th><?php print _("Action"); ?></th> + <th><?php echo _("Cover"); ?></th> + <th><?php echo _("Album Name"); ?></th> + <th><?php echo _("Album Year"); ?></th> + <th><?php echo _("Total Tracks"); ?></th> + <th><?php echo _("Action"); ?></th> </tr> <?php @@ -68,17 +68,17 @@ $artist_id = $artist->id; <input name="song[]" value="<?php print $id; ?>" type="checkbox" /> </td> <td height="87"> - <a href="<?php print $web_path; ?>/albums.php?album=<?php print $id; ?>&artist=<?php print $artist_id; ?>"> - <img border="0" src="<?php print $web_path; ?>/albumart.php?id=<?php print $id; ?>&fast=1" alt="<?php print $album_name; ?>" title="<?php print $album_name; ?>" height="75" width="75"> + <a href="<?php print $web_path; ?>/albums.php?album=<?php echo $id; ?>&artist=<?php echo $artist->id; ?>"> + <img border="0" src="<?php print $web_path; ?>/albumart.php?id=<?php print $id; ?>&fast=1" alt="<?php echo $album_name; ?>" title="<?php print $album_name; ?>" height="75" width="75"> </a> </td> - <td><a href="<?php print $web_path; ?>/albums.php?album=<?php print $id; ?>&artist=<?php print $artist_id; ?>"><?php print $album_name; ?></a></td> + <td><a href="<?php print $web_path; ?>/albums.php?album=<?php print $id; ?>&artist=<?php echo $artist->id; ?>"><?php print $album_name; ?></a></td> <td><?php print $album->year; ?></td> <td><?php print $count; ?></td> <td> - <a href="<?php print $web_path; ?>/song.php?action=m3u&album=<?php print $id; ?>"><?php print _("Play"); ?></a> + <a href="<?php print $web_path; ?>/song.php?action=m3u&album=<?php echo $id; ?>"><?php echo _("Play"); ?></a> <?php if( batch_ok() ) { ?> - | <a href="<?php echo conf('web_path'); ; ?>/batch.php?action=alb&id=<?php echo $album->id; ; ?>"><?php echo _("Download"); ; ?></a> + | <a href="<?php echo conf('web_path'); ?>/batch.php?action=alb&id=<?php echo $album->id; ?>"><?php echo _("Download"); ?></a> <?php } ?> </td> |