summaryrefslogtreecommitdiffstats
path: root/templates/show_ip_history.inc.php
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2013-01-26 02:19:06 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2013-01-26 02:19:06 -0500
commita12679b13d8d06c87308b1d26bc23c6b4fa5d92e (patch)
treed78d1a63975bfe5760bed1e6c94d38237201d807 /templates/show_ip_history.inc.php
parent80b618ba403d4560938cd1bfbed861994875d6c7 (diff)
downloadampache-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_ip_history.inc.php')
-rw-r--r--templates/show_ip_history.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_ip_history.inc.php b/templates/show_ip_history.inc.php
index 863d07c2..da4fb607 100644
--- a/templates/show_ip_history.inc.php
+++ b/templates/show_ip_history.inc.php
@@ -25,10 +25,10 @@
<ul>
<li>
<?php if (isset($_REQUEST['all'])){ ?>
- <a href="<?php echo Config::get('web_path')?>/admin/users.php?action=show_ip_history&user_id=<?php echo $working_user->id?>"><?php echo get_user_icon('disable'); ?></a>
+ <a href="<?php echo Config::get('web_path')?>/admin/users.php?action=show_ip_history&user_id=<?php echo $working_user->id?>"><?php echo UI::get_icon('disable'); ?></a>
<?php echo T_('Show Unique'); ?>
<?php }else{ ?>
- <a href="<?php echo Config::get('web_path')?>/admin/users.php?action=show_ip_history&user_id=<?php echo $working_user->id?>&all"><?php echo get_user_icon('add'); ?></a>
+ <a href="<?php echo Config::get('web_path')?>/admin/users.php?action=show_ip_history&user_id=<?php echo $working_user->id?>&all"><?php echo UI::get_icon('add'); ?></a>
<?php echo T_('Show All'); ?>
<?php }?>
</li>