diff options
Diffstat (limited to 'actions/friends/deletecollection.php')
-rw-r--r-- | actions/friends/deletecollection.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/friends/deletecollection.php b/actions/friends/deletecollection.php index 1e18adcea..d4e077a24 100644 --- a/actions/friends/deletecollection.php +++ b/actions/friends/deletecollection.php @@ -20,9 +20,9 @@ $collection_id = (int) get_input('collection'); // Check to see that the access collection exist and grab its owner $get_collection = get_access_collection($collection_id); -if($get_collection){ +if ($get_collection) { - if($get_collection->owner_guid == $_SESSION['user']->getGUID()) { + if ($get_collection->owner_guid == get_loggedin_userid()) { $delete_collection = delete_access_collection($collection_id); @@ -42,4 +42,4 @@ if($get_collection){ } // Forward to the collections page -forward("pg/collections/" . $_SESSION['user']->username); +forward("pg/collections/" . get_loggedin_user()->username); |