summaryrefslogtreecommitdiffstats
path: root/templates/show_user_stats.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-04-23 07:51:12 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-04-23 07:51:12 +0000
commit45250f50194cac99fde9569d8e8fd54ad89db179 (patch)
treed28b841587f77bdf3f61c16a08d5e7c1559280b8 /templates/show_user_stats.inc.php
parent37607a70f493921c93a50f7d245568a9e8d34d63 (diff)
downloadampache-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.php6
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&amp;type=artists">' .
+ $title = '<a href="' . Config::get('web_path') . '/stream.php?action=play_favorite&amp;type=artist">' .
get_user_icon('all') . '</a>&nbsp;' . _('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&amp;type=albums">' .
+ $title = '<a href="' . Config::get('web_path') . '/stream.php?action=play_favorite&amp;type=album">' .
get_user_icon('all') . '</a>&nbsp;' . _('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&amp;type=songs">' .
+ $title = '<a href="' . Config::get('web_path') . '/stream.php?action=play_favorite&amp;type=song">' .
get_user_icon('all') . '</a>&nbsp;' . _('Favorite Songs');
show_info_box($title,'your_song',$items);
}