diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 02:19:06 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 02:19:06 -0500 |
commit | a12679b13d8d06c87308b1d26bc23c6b4fa5d92e (patch) | |
tree | d78d1a63975bfe5760bed1e6c94d38237201d807 /templates/show_user_stats.inc.php | |
parent | 80b618ba403d4560938cd1bfbed861994875d6c7 (diff) | |
download | ampache-a12679b13d8d06c87308b1d26bc23c6b4fa5d92e.tar.gz ampache-a12679b13d8d06c87308b1d26bc23c6b4fa5d92e.tar.bz2 ampache-a12679b13d8d06c87308b1d26bc23c6b4fa5d92e.zip |
Move get_user_icon from ui.lib.php to UI::get_icon
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 8909fcc2..5bfdadaf 100644 --- a/templates/show_user_stats.inc.php +++ b/templates/show_user_stats.inc.php @@ -28,7 +28,7 @@ if (count($favorite_artists)) { $items = $working_user->format_favorites($favorite_artists); $title = '<a href="' . Config::get('web_path') . '/stream.php?action=play_favorite&type=artist">' . - get_user_icon('all', T_('Favorite Artists')) . '</a> ' . T_('Favorite Artists'); + UI::get_icon('all', T_('Favorite Artists')) . '</a> ' . T_('Favorite Artists'); show_info_box($title,'artist',$items); } else { @@ -41,7 +41,7 @@ if (count($favorite_albums)) { $items = $working_user->format_favorites($favorite_albums); $title = '<a href="' . Config::get('web_path') . '/stream.php?action=play_favorite&type=album">' . - get_user_icon('all', T_('Favorite Albums')) . '</a> ' . T_('Favorite Albums'); + UI::get_icon('all', T_('Favorite Albums')) . '</a> ' . T_('Favorite Albums'); show_info_box($title,'album',$items); } else { @@ -54,7 +54,7 @@ if (count($favorite_songs)) { $items = $working_user->format_favorites($favorite_songs); $title = '<a href="' . Config::get('web_path') . '/stream.php?action=play_favorite&type=song">' . - get_user_icon('all', T_('Favorite Songs')) . '</a> ' . T_('Favorite Songs'); + UI::get_icon('all', T_('Favorite Songs')) . '</a> ' . T_('Favorite Songs'); show_info_box($title,'your_song',$items); } else { |