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_shout_row.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_shout_row.inc.php')
-rw-r--r-- | templates/show_shout_row.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_shout_row.inc.php b/templates/show_shout_row.inc.php index effa3636..355983e8 100644 --- a/templates/show_shout_row.inc.php +++ b/templates/show_shout_row.inc.php @@ -29,11 +29,11 @@ <td class="cel_action"> <a href="<?php echo $web_path; ?>/admin/shout.php?action=show_edit&shout_id=<?php echo $shout->id; ?>"> - <?php echo get_user_icon('edit', T_('Edit')); ?> + <?php echo UI::get_icon('edit', T_('Edit')); ?> </a> <a href="<?php echo $web_path; ?>/admin/shout.php?action=delete&shout_id=<?php echo $shout->id; ?>"> - <?php echo get_user_icon('delete', T_('Delete')); ?> + <?php echo UI::get_icon('delete', T_('Delete')); ?> </a> </td> </tr> |