From 6644a332427c94352b47fa3901040ca415c1abe4 Mon Sep 17 00:00:00 2001 From: cash Date: Wed, 30 Mar 2011 01:57:29 +0000 Subject: Refs #3200 pulling in e1d75071737b2ed35cf9 from anirupdutta's pull request git-svn-id: http://code.elgg.org/elgg/trunk@8880 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/thewire/pages/thewire/previous.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'mod/thewire') diff --git a/mod/thewire/pages/thewire/previous.php b/mod/thewire/pages/thewire/previous.php index 05fc3267e..e1244c20c 100644 --- a/mod/thewire/pages/thewire/previous.php +++ b/mod/thewire/pages/thewire/previous.php @@ -4,8 +4,19 @@ */ $guid = (int) get_input('guid'); +$title = elgg_echo('thewire:previous'); $parent = thewire_get_parent($guid); if ($parent) { - echo elgg_view_entity($parent); -} \ No newline at end of file + + $body=elgg_view_entity($parent); +} + +$body = elgg_view_layout('content', array( + 'filter' => false, + 'content' => $body, + 'title' => $title, + 'buttons' => false, +)); + +echo elgg_view_page($title, $body); \ No newline at end of file -- cgit v1.2.3