www.gusucode.com > Elgg PHP开源SNS系统 V1.12.5源码程序 > elgg-1.12.5/mod/thewire/views/default/thewire/reply.php

    <?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;