Return values

This commit is contained in:
Michael 2018-05-29 12:36:44 +00:00
parent 5c668bd6e9
commit 476302afc5
1 changed files with 5 additions and 2 deletions

View File

@ -1044,13 +1044,16 @@ function pumpio_dodelete(&$a, $uid, $self, $post, $own_id) {
// Two queries for speed issues
$condition = ['uri' => $post->object->id, 'uid' => $uid];
if (dba::exists('item', $condition)) {
return Item::delete($condition);
Item::delete($condition);
return true;
}
$condition = ['extid' => $post->object->id, 'uid' => $uid];
if (dba::exists('item', $condition)) {
return Item::delete($condition);
Item::delete($condition);
return true;
}
return false;
}
function pumpio_dopost(&$a, $client, $uid, $self, $post, $own_id, $threadcompletion = true) {