diff options
author | Steve Clay <steve@mrclay.org> | 2012-04-16 23:33:10 -0400 |
---|---|---|
committer | Steve Clay <steve@mrclay.org> | 2012-04-17 08:29:57 -0400 |
commit | c591ca57144e0ef995de5a33b4cb7ef620975d64 (patch) | |
tree | e98407061c04addb0d256e74acabe7f918f41391 /mod/thewire/start.php | |
parent | f2a80038cddec5ed86b3dd9edb31cf07e3376de8 (diff) | |
download | elgg-c591ca57144e0ef995de5a33b4cb7ef620975d64.tar.gz elgg-c591ca57144e0ef995de5a33b4cb7ef620975d64.tar.bz2 |
Fixes #4413: Removes deprecated call to get_loggedin_user
Diffstat (limited to 'mod/thewire/start.php')
-rw-r--r-- | mod/thewire/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/thewire/start.php b/mod/thewire/start.php index ebfe29538..5d5786e2f 100644 --- a/mod/thewire/start.php +++ b/mod/thewire/start.php @@ -304,7 +304,7 @@ function thewire_save_post($text, $userid, $access_id, $parent_guid = 0, $method */ function thewire_send_response_notification($guid, $parent_guid, $user) { $parent_owner = get_entity($parent_guid)->getOwnerEntity(); - $user = get_loggedin_user(); + $user = elgg_get_logged_in_user_entity(); // check to make sure user is not responding to self if ($parent_owner->guid != $user->guid) { |