diff options
-rw-r--r-- | mod/thewire/pages/thewire/previous.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mod/thewire/pages/thewire/previous.php b/mod/thewire/pages/thewire/previous.php index e1244c20c..45c1e1095 100644 --- a/mod/thewire/pages/thewire/previous.php +++ b/mod/thewire/pages/thewire/previous.php @@ -1,6 +1,6 @@ <?php /** - * Server up html for a post + * Serve up html for a post's parent */ $guid = (int) get_input('guid'); @@ -8,8 +8,7 @@ $title = elgg_echo('thewire:previous'); $parent = thewire_get_parent($guid); if ($parent) { - - $body=elgg_view_entity($parent); + $body = elgg_view_entity($parent); } $body = elgg_view_layout('content', array( |