diff options
author | cash <cash.costello@gmail.com> | 2011-11-16 20:29:25 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-11-16 20:29:25 -0500 |
commit | 3703eb1e0d54ea35f751d5f451b9880069ee7ab4 (patch) | |
tree | c60895bd302a512a55cc8e7dbe47e644074e083f /mod/thewire | |
parent | ca8635f2005c60d79f0a4e175ca50d1ad4b837b6 (diff) | |
download | elgg-3703eb1e0d54ea35f751d5f451b9880069ee7ab4.tar.gz elgg-3703eb1e0d54ea35f751d5f451b9880069ee7ab4.tar.bz2 |
removed two deprecated function calls from thewire
Diffstat (limited to 'mod/thewire')
-rw-r--r-- | mod/thewire/pages/thewire/friends.php | 2 | ||||
-rw-r--r-- | mod/thewire/pages/thewire/owner.php | 2 |
2 files changed, 2 insertions, 2 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'); diff --git a/mod/thewire/pages/thewire/owner.php b/mod/thewire/pages/thewire/owner.php index a95786b0a..f544aa655 100644 --- a/mod/thewire/pages/thewire/owner.php +++ b/mod/thewire/pages/thewire/owner.php @@ -14,7 +14,7 @@ $title = elgg_echo('thewire:user', array($owner->name)); elgg_push_breadcrumb(elgg_echo('thewire'), "thewire/all"); elgg_push_breadcrumb($owner->name); -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'); |