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_artist_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_artist_row.inc.php')
-rw-r--r-- | templates/show_artist_row.inc.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/templates/show_artist_row.inc.php b/templates/show_artist_row.inc.php index e20ccfd9..00f2ac6e 100644 --- a/templates/show_artist_row.inc.php +++ b/templates/show_artist_row.inc.php @@ -26,6 +26,7 @@ <td class="cel_artist"><?php echo $artist->f_name_link; ?></td> <td class="cel_songs"><?php echo $artist->songs; ?></td> <td class="cel_albums"><?php echo $artist->albums; ?></td> +<td class="cel_rating" id="rating_<?php echo $artist->id; ?>_artist"><?php Rating::show($artist->id,'artist'); ?></td> <td class="cel_action"> <?php if (Access::check_function('batch_download')) { ?> <a href="<?php echo Config::get('web_path'); ?>/batch.php?action=artist&id=<?php echo $artist->id; ?>"> |