diff options
| author | Brett Profitt <brett.profitt@gmail.com> | 2012-04-22 16:25:43 -0700 | 
|---|---|---|
| committer | Brett Profitt <brett.profitt@gmail.com> | 2012-04-22 16:25:43 -0700 | 
| commit | 36ac28256269a6845a8e02de793c1ee1337ab298 (patch) | |
| tree | f0c9f858f5e2d47649b0d40ad3f4902d688b8c82 | |
| parent | 8b1036819422049d81bca3384259ac2f74e7a27a (diff) | |
| parent | c591ca57144e0ef995de5a33b4cb7ef620975d64 (diff) | |
| download | elgg-36ac28256269a6845a8e02de793c1ee1337ab298.tar.gz elgg-36ac28256269a6845a8e02de793c1ee1337ab298.tar.bz2 | |
Merge pull request #187 from mrclay/t4413
Issue 4413 fix
| -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) { | 
