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 /lib/class/ajax.class.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 'lib/class/ajax.class.php')
-rw-r--r-- | lib/class/ajax.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/ajax.class.php b/lib/class/ajax.class.php index de217330..04098861 100644 --- a/lib/class/ajax.class.php +++ b/lib/class/ajax.class.php @@ -123,7 +123,7 @@ class Ajax { $class = ' class="' . $class . '"'; } - $string = get_user_icon($icon,$alt); + $string = UI::get_icon($icon,$alt); // Generate an <a> so that it's more compliant with older // browsers (ie :hover actions) and also to unify linkbuttons |