diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-17 07:12:39 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-11-28 21:43:58 -0500 |
commit | 43b42bd3b727c75308bc0dc1a663ecdb0882ba77 (patch) | |
tree | 099e6b1fb9e88678580b272371865d054e731160 /mod/thewire/pages | |
parent | 990f700c35ac151caec14d3553ad4e4aff79ce58 (diff) | |
download | elgg-43b42bd3b727c75308bc0dc1a663ecdb0882ba77.tar.gz elgg-43b42bd3b727c75308bc0dc1a663ecdb0882ba77.tar.bz2 |
Fixes #4100 adds the wire post form back to all page
Diffstat (limited to 'mod/thewire/pages')
-rw-r--r-- | mod/thewire/pages/thewire/everyone.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/thewire/pages/thewire/everyone.php b/mod/thewire/pages/thewire/everyone.php index 4e88d17af..909f0caf2 100644 --- a/mod/thewire/pages/thewire/everyone.php +++ b/mod/thewire/pages/thewire/everyone.php @@ -8,13 +8,14 @@ elgg_push_breadcrumb(elgg_echo('thewire')); $title = elgg_echo('thewire:everyone'); +$content = ''; if (elgg_is_logged_in()) { $form_vars = array('class' => 'thewire-form'); $content .= elgg_view_form('thewire/add', $form_vars); $content .= elgg_view('input/urlshortener'); } -$content = elgg_list_entities(array( +$content .= elgg_list_entities(array( 'type' => 'object', 'subtype' => 'thewire', 'limit' => 15, |