aboutsummaryrefslogtreecommitdiff
path: root/actions/friends/remove.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/friends/remove.php')
-rw-r--r--actions/friends/remove.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/friends/remove.php b/actions/friends/remove.php
index 4ba7bc572..1ad9471b3 100644
--- a/actions/friends/remove.php
+++ b/actions/friends/remove.php
@@ -4,7 +4,7 @@ $friend = get_entity(sanitize_int(get_input('friend')));
$user = elgg_get_logged_in_user_entity();
if(!elgg_instanceof($friend, 'user')){
- register_error(elgg_echo('friendrequest:remove:failure', array($friend->name)));
+ register_error(elgg_echo('friends:remove:failure', array($friend->name)));
forward(REFERER);
}
@@ -15,10 +15,10 @@ if(check_entity_relationship($user->guid, "friend", $friend->guid)) {
$friend->removeFriend($user->guid);
}
} catch (Exception $e) {
- register_error(elgg_echo('friendrequest:remove:failure', array($friend->name)));
+ register_error(elgg_echo('friends:remove:failure', array($friend->name)));
forward(REFERER);
}
}
-system_message(elgg_echo('friendrequest:remove:successful', array($friend->name)));
+system_message(elgg_echo('friends:remove:successful', array($friend->name)));
forward(REFERER);