diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-02-15 15:19:46 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-02-15 15:19:46 +0000 |
commit | 68917e09f5f47928ca31773a5ee17ad93bc9ab3c (patch) | |
tree | 3492ccbfa54ab5351b86e053dc2f06be473e75c7 /templates/show_artists.inc.php | |
parent | 730d21e8d85efea95614e8bd93703dd6d12bfd0f (diff) | |
download | ampache-68917e09f5f47928ca31773a5ee17ad93bc9ab3c.tar.gz ampache-68917e09f5f47928ca31773a5ee17ad93bc9ab3c.tar.bz2 ampache-68917e09f5f47928ca31773a5ee17ad93bc9ab3c.zip |
fixed previously broken artist link for browsing
Diffstat (limited to 'templates/show_artists.inc.php')
-rw-r--r-- | templates/show_artists.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_artists.inc.php b/templates/show_artists.inc.php index 7b1176b6..4f52e257 100644 --- a/templates/show_artists.inc.php +++ b/templates/show_artists.inc.php @@ -43,7 +43,7 @@ $total_items = $view->total_items; //FIXME: These should come in as objects... foreach ($artists as $artist) { ?> <tr class="<?php echo flip_class(); ?>"> - <td><?php echo $artist->f_name; ?></td> + <td><?php echo $artist->link; ?></td> <td><?php echo $artist->songs; ?></td> <td><?php echo $artist->albums; ?></td> <td nowrap="nowrap"> |