aboutsummaryrefslogtreecommitdiff
path: root/actions/get_icons.php
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2013-09-05 17:45:55 +0200
committerSem <sembrestels@riseup.net>2013-09-05 17:45:55 +0200
commit001e536e85c23caf74dd3b88cec1c2984320acb3 (patch)
treeaec2cbcbb89162f9a46ba985e5de08f77de76991 /actions/get_icons.php
parent22479294531da254c0b9060afd5e2992c6db91e1 (diff)
downloadelgg-001e536e85c23caf74dd3b88cec1c2984320acb3.tar.gz
elgg-001e536e85c23caf74dd3b88cec1c2984320acb3.tar.bz2
Upgraded depracated function calls.
Diffstat (limited to 'actions/get_icons.php')
-rw-r--r--actions/get_icons.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/get_icons.php b/actions/get_icons.php
index 88e7bdd3b..33d447e2e 100644
--- a/actions/get_icons.php
+++ b/actions/get_icons.php
@@ -30,7 +30,7 @@
$jid_host = $splitjid[1];
foreach ($userFriendsEntities as $friend)
{
- if ((strtolower($friend->username) == strtolower($jid_name) && $jid_host == get_plugin_setting("domain", "beechat")))
+ if ((strtolower($friend->username) == strtolower($jid_name) && $jid_host == elgg_get_plugin_setting("domain", "beechat")))
{
$res[$value] = array('small' => $friend->getIcon('small'), 'tiny' => $friend->getIcon('tiny'));
$found = true;