diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-04-23 07:51:12 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-04-23 07:51:12 +0000 |
commit | 45250f50194cac99fde9569d8e8fd54ad89db179 (patch) | |
tree | d28b841587f77bdf3f61c16a08d5e7c1559280b8 /templates/show_user_stats.inc.php | |
parent | 37607a70f493921c93a50f7d245568a9e8d34d63 (diff) | |
download | ampache-45250f50194cac99fde9569d8e8fd54ad89db179.tar.gz ampache-45250f50194cac99fde9569d8e8fd54ad89db179.tar.bz2 ampache-45250f50194cac99fde9569d8e8fd54ad89db179.zip |
added favorite X play links
Diffstat (limited to 'templates/show_user_stats.inc.php')
-rw-r--r-- | templates/show_user_stats.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_user_stats.inc.php b/templates/show_user_stats.inc.php index 2e9e4f84..b9a9fd23 100644 --- a/templates/show_user_stats.inc.php +++ b/templates/show_user_stats.inc.php @@ -26,7 +26,7 @@ <?php if (count($favorite_artists)) { $items = $working_user->format_favorites($favorite_artists); - $title = '<a href="' . Config::get('web_path') . '/stats.php?action=play_favorite&type=artists">' . + $title = '<a href="' . Config::get('web_path') . '/stream.php?action=play_favorite&type=artist">' . get_user_icon('all') . '</a> ' . _('Favorite Artists'); show_info_box($title,'artist',$items); } @@ -39,7 +39,7 @@ <?php if (count($favorite_albums)) { $items = $working_user->format_favorites($favorite_albums); - $title = '<a href="' . Config::get('web_path') . '/stats.php?action=play_favorite&type=albums">' . + $title = '<a href="' . Config::get('web_path') . '/stream.php?action=play_favorite&type=album">' . get_user_icon('all') . '</a> ' . _('Favorite Albums'); show_info_box($title,'album',$items); } @@ -52,7 +52,7 @@ <?php if (count($favorite_songs)) { $items = $working_user->format_favorites($favorite_songs); - $title = '<a href="' . Config::get('web_path') . '/stats.php?action=play_favorite&type=songs">' . + $title = '<a href="' . Config::get('web_path') . '/stream.php?action=play_favorite&type=song">' . get_user_icon('all') . '</a> ' . _('Favorite Songs'); show_info_box($title,'your_song',$items); } |