diff options
| author | Cash Costello <cash.costello@gmail.com> | 2011-11-17 07:12:39 -0500 | 
|---|---|---|
| committer | Cash Costello <cash.costello@gmail.com> | 2011-11-17 07:12:39 -0500 | 
| commit | efbc8eaeb96c2e2f645d1896f29c5e12ea0dbce4 (patch) | |
| tree | b81112d7db6155dd8a9f232e5494d8959d05f2e6 /mod | |
| parent | 3703eb1e0d54ea35f751d5f451b9880069ee7ab4 (diff) | |
| download | elgg-efbc8eaeb96c2e2f645d1896f29c5e12ea0dbce4.tar.gz elgg-efbc8eaeb96c2e2f645d1896f29c5e12ea0dbce4.tar.bz2  | |
Fixes #4100 adds the wire post form back to all page
Diffstat (limited to 'mod')
| -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,  | 
