diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-08-22 22:37:30 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-08-22 22:37:30 +0000 |
commit | ca08eb6d170d375ef4fca53604956f3474c7db19 (patch) | |
tree | a1e96c6b0ae322fab93373a66e1951e2b3b9be48 /actions/friends/addcollection.php | |
parent | be37104ac63cd25f2eac831ca03d6d2b19976e1c (diff) | |
download | elgg-ca08eb6d170d375ef4fca53604956f3474c7db19.tar.gz elgg-ca08eb6d170d375ef4fca53604956f3474c7db19.tar.bz2 |
Merged r6701:6756 from 1.7 branch into trunk
git-svn-id: http://code.elgg.org/elgg/trunk@6849 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/friends/addcollection.php')
-rw-r--r-- | actions/friends/addcollection.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/friends/addcollection.php b/actions/friends/addcollection.php index e5541797b..6124b3496 100644 --- a/actions/friends/addcollection.php +++ b/actions/friends/addcollection.php @@ -21,7 +21,7 @@ $friends = get_input('friends_collection'); if($collection_name){ //create the collection - $create_collection = create_access_collection($collection_name, $_SESSION['user']->getGUID()); + $create_collection = create_access_collection($collection_name, get_loggedin_userid()); //if the collection was created and the user passed some friends from the form, add them if($create_collection && (!empty($friends))){ @@ -34,7 +34,7 @@ if($collection_name){ // Success message system_message(elgg_echo("friends:collectionadded")); // Forward to the collections page - forward("pg/collections/" . $_SESSION['user']->username); + forward("pg/collections/" . get_loggedin_user()->username); } else { register_error(elgg_echo("friends:nocollectionname")); |