aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/pages/thewire/friends.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-06-29 06:59:42 -0400
committerCash Costello <cash.costello@gmail.com>2011-06-29 06:59:42 -0400
commit56dce72f0d61160f9d66e1529f2012415bc4b0aa (patch)
tree3380a7dd0a21f9e80a5f7bcf4bf20a4e0c1d78ec /mod/thewire/pages/thewire/friends.php
parent8ed11a8881f65339446fccae64864e0d57dfff51 (diff)
downloadelgg-56dce72f0d61160f9d66e1529f2012415bc4b0aa.tar.gz
elgg-56dce72f0d61160f9d66e1529f2012415bc4b0aa.tar.bz2
Fixes #3578 added a css class to thewire add form
Diffstat (limited to 'mod/thewire/pages/thewire/friends.php')
-rw-r--r--mod/thewire/pages/thewire/friends.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/mod/thewire/pages/thewire/friends.php b/mod/thewire/pages/thewire/friends.php
index 0dfdcada9..265b73eab 100644
--- a/mod/thewire/pages/thewire/friends.php
+++ b/mod/thewire/pages/thewire/friends.php
@@ -11,7 +11,13 @@ elgg_push_breadcrumb(elgg_echo('thewire'), "thewire/all");
elgg_push_breadcrumb($owner->name, "thewire/owner/$owner->username");
elgg_push_breadcrumb(elgg_echo('friends'));
-$content = list_user_friends_objects($owner->guid, 'thewire', 15, false);
+if (get_loggedin_userid() == $owner->guid) {
+ $form_vars = array('class' => 'thewire-form');
+ $content = elgg_view_form('thewire/add', $form_vars);
+ $content .= elgg_view('input/urlshortener');
+}
+
+$content .= list_user_friends_objects($owner->guid, 'thewire', 15, false);
$body = elgg_view_layout('content', array(
'filter_context' => 'friends',