aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/views/default/thewire/reply.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/thewire/views/default/thewire/reply.php')
-rw-r--r--mod/thewire/views/default/thewire/reply.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/mod/thewire/views/default/thewire/reply.php b/mod/thewire/views/default/thewire/reply.php
new file mode 100644
index 000000000..341b691b1
--- /dev/null
+++ b/mod/thewire/views/default/thewire/reply.php
@@ -0,0 +1,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; \ No newline at end of file