From b3ac1cd993f893efc7b9f6862f630f0784aa1c9f Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 24 Apr 2015 00:56:06 -0700 Subject: mod/branchtopic - move an off-topic comment to its own thread as a fresh wall-to-wall post and the same delivery permissions as its parent. No adjustments are made for complex delivery chains. --- mod/branchtopic.php | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 mod/branchtopic.php (limited to 'mod') diff --git a/mod/branchtopic.php b/mod/branchtopic.php new file mode 100644 index 000000000..2039489fa --- /dev/null +++ b/mod/branchtopic.php @@ -0,0 +1,42 @@ + 1) + $item_id = intval(argv(1)); + + if(! $item_id) + return; + + $channel = $a->get_channel(); + + if(! $channel) + return; + + + $r = q("select * from item where id = %d and uid = %d and owner_xchan = '%s' and id != parent limit 1", + intval($item_id), + intval(local_channel()), + dbesc($channel['channel_hash']) + ); + + if(! $r) + return; + + $p = q("select * from item where id = %d and uid = %d limit 1", + intval($r[0]['parent']), + intval(local_channel()) + ); + + $x = q("update item set parent = id, item_flags = (item_flags | %d) where id = %d", + intval(ITEM_THREAD_TOP), + intval($item_id) + ); + + return; +} -- cgit v1.2.3