diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-08 19:52:10 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-08 19:52:10 +0000 |
commit | ccb6d625239b59b283b4d3fc00da704ab743d74c (patch) | |
tree | da9b11d8758b3007c025e4d5487410ae1ca69f68 /mod/thewire/index.php | |
parent | 1368785a6b6f9c946dcc5eca078540bacce71f60 (diff) | |
download | elgg-ccb6d625239b59b283b4d3fc00da704ab743d74c.tar.gz elgg-ccb6d625239b59b283b4d3fc00da704ab743d74c.tar.bz2 |
Refs #2543: Updated trunk mods and views to use the new functions from previous 2 commits.
git-svn-id: http://code.elgg.org/elgg/trunk@8079 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/thewire/index.php')
-rw-r--r-- | mod/thewire/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/thewire/index.php b/mod/thewire/index.php index d69cbd5ca..7ed43e3bc 100644 --- a/mod/thewire/index.php +++ b/mod/thewire/index.php @@ -12,12 +12,12 @@ // Get the current page's owner $page_owner = elgg_get_page_owner_entity(); if ($page_owner === false || is_null($page_owner)) { - $page_owner = get_loggedin_user(); + $page_owner = elgg_get_logged_in_user_entity(); set_page_owner($page_owner->getGUID()); } // title - if (elgg_get_page_owner_guid() == get_loggedin_userid()) { + if (elgg_get_page_owner_guid() == elgg_get_logged_in_user_guid()) { $area2 = elgg_view_title(elgg_echo("thewire:read")); } else { $area2 = elgg_view_title(elgg_echo("thewire:user",array($page_owner->name))); |