aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/pages/thewire/friends.php
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2011-11-16 20:29:25 -0500
committercash <cash.costello@gmail.com>2011-11-16 20:29:25 -0500
commit3703eb1e0d54ea35f751d5f451b9880069ee7ab4 (patch)
treec60895bd302a512a55cc8e7dbe47e644074e083f /mod/thewire/pages/thewire/friends.php
parentca8635f2005c60d79f0a4e175ca50d1ad4b837b6 (diff)
downloadelgg-3703eb1e0d54ea35f751d5f451b9880069ee7ab4.tar.gz
elgg-3703eb1e0d54ea35f751d5f451b9880069ee7ab4.tar.bz2
removed two deprecated function calls from thewire
Diffstat (limited to 'mod/thewire/pages/thewire/friends.php')
-rw-r--r--mod/thewire/pages/thewire/friends.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/thewire/pages/thewire/friends.php b/mod/thewire/pages/thewire/friends.php
index 26ad03da6..e7f5eed59 100644
--- a/mod/thewire/pages/thewire/friends.php
+++ b/mod/thewire/pages/thewire/friends.php
@@ -14,7 +14,7 @@ elgg_push_breadcrumb(elgg_echo('thewire'), "thewire/all");
elgg_push_breadcrumb($owner->name, "thewire/owner/$owner->username");
elgg_push_breadcrumb(elgg_echo('friends'));
-if (get_loggedin_userid() == $owner->guid) {
+if (elgg_get_logged_in_user_guid() == $owner->guid) {
$form_vars = array('class' => 'thewire-form');
$content = elgg_view_form('thewire/add', $form_vars);
$content .= elgg_view('input/urlshortener');