diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-19 15:59:10 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-19 15:59:10 +0000 |
commit | 9025749d491f72f706844e2a86da63ce284b9ff6 (patch) | |
tree | c4bfdcf9457693cc809f36c3bd46f2425742dde0 /actions/friends/add.php | |
parent | 6b90fef25637bc0204411e318eb0231edebafdb1 (diff) | |
download | elgg-9025749d491f72f706844e2a86da63ce284b9ff6.tar.gz elgg-9025749d491f72f706844e2a86da63ce284b9ff6.tar.bz2 |
Fixes #3167 friending now shows up in river
git-svn-id: http://code.elgg.org/elgg/trunk@8773 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/friends/add.php')
-rw-r--r-- | actions/friends/add.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/friends/add.php b/actions/friends/add.php index 53e4971d4..7d38674c1 100644 --- a/actions/friends/add.php +++ b/actions/friends/add.php @@ -23,7 +23,7 @@ try { } if (!$errors) { // add to river - add_to_river('friends/river/create', 'friend', elgg_get_logged_in_user_guid(), $friend_guid); + add_to_river('river/relationship/friend/create', 'friend', elgg_get_logged_in_user_guid(), $friend_guid); system_message(elgg_echo("friends:add:successful", array($friend->name))); } |