diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-30 01:59:57 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-30 01:59:57 +0000 |
commit | 030f72d81b76823e4f3b85675beb896b00b6af5d (patch) | |
tree | dd56bcdcecbf4df854532d999606013f4f8bb9b6 /mod | |
parent | 6644a332427c94352b47fa3901040ca415c1abe4 (diff) | |
download | elgg-030f72d81b76823e4f3b85675beb896b00b6af5d.tar.gz elgg-030f72d81b76823e4f3b85675beb896b00b6af5d.tar.bz2 |
Refs #3200 fixed a coding standards issue in previous commit
git-svn-id: http://code.elgg.org/elgg/trunk@8881 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-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( |