diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-04-27 16:55:07 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-04-27 16:55:07 -0400 |
commit | ce5b98ca016841edf920ebc062f1b4d53488762c (patch) | |
tree | 2aff0cd2f420a251f24dac7f477a4476b52d3798 /actions/subscriptions.php | |
parent | 3081b2e31708520e6ed83041ce3ba04329d3ec90 (diff) | |
parent | 8cf8298dc02b1373fed53eb95982a33b969b42ee (diff) |
Merge branch '0.7.x' into querybyid
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 |