update timestamp on activity change (comment/like)

This commit is contained in:
Friendika 2011-09-16 06:49:24 -07:00
parent 80f94bb12b
commit 9c3503a706
2 changed files with 13 additions and 0 deletions

View File

@ -865,6 +865,13 @@ function item_store($arr,$force_parent = false) {
intval($current_post)
);
// update the timestamp on the parent
q("UPDATE `item` set `changed` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($parent_id)
);
if($dsprsig) {
q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
intval($current_post),

View File

@ -803,6 +803,12 @@ function item_post(&$a) {
// NOTREACHED
}
// update the timestamp on the parent
q("UPDATE `item` set `changed` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($parent)
);
$datarray['id'] = $post_id;
$datarray['plink'] = $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id;