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-28 21:43:58 -0500
commit990f700c35ac151caec14d3553ad4e4aff79ce58 (patch)
tree30621195235405fa60db68ce161f6b0cb4eb2471 /mod/thewire/pages/thewire/friends.php
parent08a962c98e2923724f8013d6eaae89101243752a (diff)
downloadelgg-990f700c35ac151caec14d3553ad4e4aff79ce58.tar.gz
elgg-990f700c35ac151caec14d3553ad4e4aff79ce58.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');