aboutsummaryrefslogtreecommitdiff
path: root/actions/friends/add.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/friends/add.php')
-rw-r--r--actions/friends/add.php15
1 files changed, 8 insertions, 7 deletions
diff --git a/actions/friends/add.php b/actions/friends/add.php
index f51aacefd..760da81b7 100644
--- a/actions/friends/add.php
+++ b/actions/friends/add.php
@@ -18,16 +18,17 @@
$friend_guid = get_input('friend');
$friend = get_entity($friend_guid);
+ $errors = false;
+
// Get the user
- if ($_SESSION['user']->addFriend($friend_guid)) {
-
- system_message(sprintf(elgg_echo("friends:add:successful"),$friend->name));
-
- } else {
-
+ try {
+ $_SESSION['user']->addFriend($friend_guid);
+ } catch (Exception $e) {
register_error(sprintf(elgg_echo("friends:add:failure"),$friend->name));
-
+ $errors = true;
}
+ if (!$errors)
+ system_message(sprintf(elgg_echo("friends:add:successful"),$friend->name));
// Forward to the user friends page
forward("pg/friends/" . $_SESSION['user']->username . "/");