Replace array_unique with GROUP BY clause in api_fr_photoalbum_delete()

This commit is contained in:
Hypolite Petovan 2020-06-25 08:05:09 -04:00
parent 8272b16647
commit b6c7f247cc
1 changed files with 2 additions and 2 deletions

View File

@ -4079,12 +4079,12 @@ function api_fr_photoalbum_delete($type)
}
// check if album is existing
$photos = DBA::selectToArray('photo', ['resource-id'], ['uid' => api_user(), 'album' => $album]);
$photos = DBA::selectToArray('photo', ['resource-id'], ['uid' => api_user(), 'album' => $album], ['group_by' => ['resource-id']]);
if (!DBA::isResult($photos)) {
throw new BadRequestException("album not available");
}
$resourceIds = array_unique(array_column($photos, 'resource-id'));
$resourceIds = array_column($photos, 'resource-id');
// function for setting the items to "deleted = 1" which ensures that comments, likes etc. are not shown anymore
// to the user and the contacts of the users (drop_items() performs the federation of the deletion to other networks