diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-07-03 03:08:34 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-07-03 03:08:34 -0400 |
commit | 00074cda739702d97e07e490cbba6fa0a4fde23b (patch) | |
tree | 7009aaf167a5130ce4e4e82153c6d48cebf85015 /actions/subscriptions.php | |
parent | e8f27025ba7869057d86fe37a5264e1c742969f5 (diff) | |
parent | f73d93fa7ae79f1e0b47d73fbdc1b214c6e559ae (diff) |
Merge branch '0.8.x' into queuemanager
Diffstat (limited to 'actions/subscriptions.php')
-rw-r--r-- | actions/subscriptions.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/actions/subscriptions.php b/actions/subscriptions.php index 4124abea4..42bdae10f 100644 --- a/actions/subscriptions.php +++ b/actions/subscriptions.php @@ -159,7 +159,10 @@ class SubscriptionsListItem extends SubscriptionListItem $this->showBio(); $this->showTags(); // Relevant portion! - $this->showOwnerControls(); + $cur = common_current_user(); + if (!empty($cur) && $cur->id == $this->owner->id) { + $this->showOwnerControls(); + } $this->endProfile(); } |