summaryrefslogtreecommitdiff
path: root/lib/profilelist.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-11-20 15:35:28 -0500
committerEvan Prodromou <evan@prodromou.name>2008-11-20 15:35:28 -0500
commit168693b103c17f0e98f2e02854d7290f59f0cfb5 (patch)
tree7fb93218b0496045a3adb3b14f8dbb734c69941b /lib/profilelist.php
parenta8b7d0a7b5c5f22d11eafd0cd5d8adf1f1fd399f (diff)
common_(un)subscribe_form
darcs-hash:20081120203528-84dde-2b8d14a491ea4d44bebfdd4e4a3041dde3b375c1.gz
Diffstat (limited to 'lib/profilelist.php')
-rw-r--r--lib/profilelist.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/profilelist.php b/lib/profilelist.php
index ebc974d6b..b8f52fd8f 100644
--- a/lib/profilelist.php
+++ b/lib/profilelist.php
@@ -95,6 +95,16 @@ class ProfileList {
common_raw($this->highlight($this->profile->bio));
common_element_end('p');
}
+
+ $user = common_current_user();
+ if ($user) {
+ if ($user->isSubscribed($this->profile)) {
+ common_unsubscribe_form($profile);
+ } else {
+ common_subscribe_form($profile);
+ }
+ }
+
common_element_end('li');
}