Fix parse error

这个提交包含在:
fabrixxm 2018-12-11 20:09:24 +01:00 提交者 Hypolite Petovan
父节点 8c75c26361
当前提交 e7fbe04b11
共有 1 个文件被更改,包括 1 次插入1 次删除

查看文件

@ -4100,7 +4100,7 @@ function api_fr_photo_create_update($type)
$mode = "update"; $mode = "update";
// check if photo is existing in databasei // check if photo is existing in databasei
if (!Photo::exists($photo_id, ['uid' => api_user(), 'album' => $album]) { if (!Photo::exists($photo_id, ['uid' => api_user(), 'album' => $album])) {
throw new BadRequestException("photo not available"); throw new BadRequestException("photo not available");
} }
} }