From 7ddd9521b3f3a397da3b0a6b56238d31414eb4be Mon Sep 17 00:00:00 2001 From: brettp Date: Thu, 28 Oct 2010 19:17:36 +0000 Subject: Standardized code in all of core, not including language files, tests, or core mods. git-svn-id: http://code.elgg.org/elgg/trunk@7124 36083f99-b078-4883-b0ff-0f9b5a30f544 --- actions/friends/add.php | 12 ++++++------ actions/friends/addcollection.php | 13 +++++-------- actions/friends/deletecollection.php | 7 ++----- actions/friends/editcollection.php | 5 ++--- actions/friends/remove.php | 6 +++--- 5 files changed, 18 insertions(+), 25 deletions(-) (limited to 'actions/friends') diff --git a/actions/friends/add.php b/actions/friends/add.php index cb527f82b..d26539a54 100644 --- a/actions/friends/add.php +++ b/actions/friends/add.php @@ -2,8 +2,8 @@ /** * Elgg add friend action * - * @package Elgg - * @subpackage Core + * @package Elgg.Core + * @subpackage Friends.Management */ // Ensure we are logged in @@ -21,13 +21,13 @@ try { $errors = true; } } catch (Exception $e) { - register_error(sprintf(elgg_echo("friends:add:failure"),$friend->name)); + register_error(sprintf(elgg_echo("friends:add:failure"), $friend->name)); $errors = true; } -if (!$errors){ +if (!$errors) { // add to river - add_to_river('friends/river/create','friend',get_loggedin_userid(),$friend_guid); - system_message(sprintf(elgg_echo("friends:add:successful"),$friend->name)); + add_to_river('friends/river/create', 'friend', get_loggedin_userid(), $friend_guid); + system_message(sprintf(elgg_echo("friends:add:successful"), $friend->name)); } // Forward back to the page you friended the user on diff --git a/actions/friends/addcollection.php b/actions/friends/addcollection.php index e81fa34af..8fdb2be87 100644 --- a/actions/friends/addcollection.php +++ b/actions/friends/addcollection.php @@ -1,12 +1,9 @@ removeFriend($friend_guid); - } else{ + } else { register_error(sprintf(elgg_echo("friends:remove:failure"), $friend->name)); $errors = true; } -- cgit v1.2.3