aboutsummaryrefslogtreecommitdiffstats
path: root/mod/branchtopic.php
blob: d49bbaf4c867153efe2e522ca15b0d078a376be9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php

function branchtopic_init(&$a) {

	if(! local_channel())
		return;

	$item_id = 0;

	if(argc() > 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, route = '', item_thread_top = 1 where id = %d",
		intval($item_id)
	);

	return;
}