delete of single items should now work again

This commit is contained in:
Michael Meer 2013-01-23 13:50:57 +01:00
parent 1502e3971e
commit fca354aa46

View File

@ -4057,12 +4057,18 @@ function drop_item($id,$interactive = true) {
// delete the item
$r = q("UPDATE `item` SET `deleted` = 1, `title` = '', `body` = '', `edited` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
dbesc(datetime_convert()),
intval($item['id'])
$r = q(" UPDATE `item` SET
`item_restrict` = (item_restrict|%d) ,
`title` = '',
`body` = '',
`changed` = '%s' WHERE `id` = %d LIMIT 1",
intval(ITEM_DELETED),
dbesc(datetime_convert()),
intval($item['id'])
);
// clean up categories and tags so they don't end up as orphans
$matches = false;