From 001e536e85c23caf74dd3b88cec1c2984320acb3 Mon Sep 17 00:00:00 2001 From: Sem Date: Thu, 5 Sep 2013 17:45:55 +0200 Subject: Upgraded depracated function calls. --- actions/get_icons.php | 2 +- actions/join_groupchat.php | 2 +- actions/leave_groupchat.php | 2 +- actions/save_state.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'actions') 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; diff --git a/actions/join_groupchat.php b/actions/join_groupchat.php index 0d2d75c61..c694d7957 100644 --- a/actions/join_groupchat.php +++ b/actions/join_groupchat.php @@ -1,6 +1,6 @@