aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/views/default/thewire/previous.php
blob: e1ca83e2433c620efaa3f5b0cc5100c54864e2aa (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
/**
 * Serve up html for a post
 */

$guid = (int) get_input('guid');

$parent = thewire_get_parent($guid);
if ($parent) {
	echo elgg_view_entity($parent);
}