diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-04-15 05:45:53 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-04-15 05:45:53 +0000 |
commit | 3900727d938a6bdbe8453188a030abccb4fa537a (patch) | |
tree | 287bf5087a96ff45ee4543dafdd7f256781af529 /templates/show_album_row.inc.php | |
parent | 669753d59d3b7acfb248e46daad174ed7414eb4a (diff) | |
download | ampache-3900727d938a6bdbe8453188a030abccb4fa537a.tar.gz ampache-3900727d938a6bdbe8453188a030abccb4fa537a.tar.bz2 ampache-3900727d938a6bdbe8453188a030abccb4fa537a.zip |
albums and artists now have ratings
Diffstat (limited to 'templates/show_album_row.inc.php')
-rw-r--r-- | templates/show_album_row.inc.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/templates/show_album_row.inc.php b/templates/show_album_row.inc.php index 8a2b7be7..56a08091 100644 --- a/templates/show_album_row.inc.php +++ b/templates/show_album_row.inc.php @@ -37,6 +37,7 @@ <td class="cel_artist"><?php echo $album->f_artist_link; ?></td> <td class="cel_songs"><?php echo $album->song_count; ?></td> <td class="cel_year"><?php echo $album->year; ?></td> +<td class="cel_rating" id="rating_<?php echo $album->id; ?>_album"><?php Rating::show($album->id,'album'); ?></td> <td class="cel_action"> <?php if (Config::get('shoutbox')) { ?> <a href="<?php echo Config::get('web_path'); ?>/shout.php?action=show_add_shout&type=album&id=<?php echo $album->id; ?>"> |