diff options
author | Robin Millette <millette@controlyourself.ca> | 2009-04-18 21:14:31 +0000 |
---|---|---|
committer | Robin Millette <millette@controlyourself.ca> | 2009-04-18 21:14:31 +0000 |
commit | 39c0e3a9ef9c0d82eb5fae54d2aa422e281b24a1 (patch) | |
tree | 9344f6e279f0e6920074a66312d3cb404e362432 /actions/subscriptions.php | |
parent | cb645558a511e0f4a03923a988bda78ceae5ff0d (diff) | |
parent | eec323b5b706b84039b3ead6e7ab8d4d6b666f1a (diff) |
fix 0.7.x 0.8.x merge conflict in register.php
Diffstat (limited to 'actions/subscriptions.php')
-rw-r--r-- | actions/subscriptions.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/actions/subscriptions.php b/actions/subscriptions.php index e6f3c54db..095b18ad8 100644 --- a/actions/subscriptions.php +++ b/actions/subscriptions.php @@ -125,6 +125,16 @@ class SubscriptionsAction extends GalleryAction $this->raw(common_markup_to_html($message)); $this->elementEnd('div'); } + + function showSections() + { + parent::showSections(); + $cloud = new SubscriptionsPeopleTagCloudSection($this); + $cloud->show(); + + $cloud2 = new SubscriptionsPeopleSelfTagCloudSection($this); + $cloud2->show(); + } } class SubscriptionsList extends ProfileList |