removing another potential way a post could have a zero parent.

This commit is contained in:
Friendika 2011-10-03 02:39:19 -07:00
parent 60147d893c
commit 7091173131
1 changed files with 5 additions and 0 deletions

View File

@ -779,6 +779,11 @@ function item_post(&$a) {
}
}
// fallback so that parent always gets set to non-zero.
if(! $parent)
$parent = $post_id;
$r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `plink` = '%s', `changed` = '%s', `last-child` = 1, `visible` = 1
WHERE `id` = %d LIMIT 1",
intval($parent),