aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/views/default/thewire/reply.php
blob: 341b691b19f5bfb8d2ba2f9b44d687fcb23e57c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/**
 * Reply header
 */

$post = $vars['post'];
$poster = $post->getOwnerEntity();
$poster_details = array(
	htmlspecialchars($poster->name,  ENT_QUOTES, 'UTF-8'),
	htmlspecialchars($poster->username,  ENT_QUOTES, 'UTF-8'),
);
?>
<b><?php echo elgg_echo('thewire:replying', $poster_details); ?>: </b>
<?php echo $post->description;