From a12679b13d8d06c87308b1d26bc23c6b4fa5d92e Mon Sep 17 00:00:00 2001 From: Paul Arthur Date: Sat, 26 Jan 2013 02:19:06 -0500 Subject: Move get_user_icon from ui.lib.php to UI::get_icon --- templates/show_user_stats.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'templates/show_user_stats.inc.php') 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 = '' . - get_user_icon('all', T_('Favorite Artists')) . ' ' . T_('Favorite Artists'); + UI::get_icon('all', T_('Favorite Artists')) . ' ' . 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 = '' . - get_user_icon('all', T_('Favorite Albums')) . ' ' . T_('Favorite Albums'); + UI::get_icon('all', T_('Favorite Albums')) . ' ' . 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 = '' . - get_user_icon('all', T_('Favorite Songs')) . ' ' . T_('Favorite Songs'); + UI::get_icon('all', T_('Favorite Songs')) . ' ' . T_('Favorite Songs'); show_info_box($title,'your_song',$items); } else { -- cgit