diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-17 21:37:47 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-17 21:37:47 -0400 |
commit | 82b80b2f75ffb8368078ce0566df394b92bb49e9 (patch) | |
tree | 6c68921cdc192e6260be9b47e8b02c7b7d4a4e43 /actions | |
parent | 2b8a19e5ddf2328dd2b660afa260ae3d982ea2bd (diff) |
add header and footer to subscriptions
darcs-hash:20080518013747-84dde-e3e4f2bcd562f86e7c5460bc1bdbda8a1417dd31.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/subscriptions.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actions/subscriptions.php b/actions/subscriptions.php index 69f57e98b..669502939 100644 --- a/actions/subscriptions.php +++ b/actions/subscriptions.php @@ -33,7 +33,9 @@ class SubscriptionsAction extends Action { $this->no_such_user(); } $page = $this->arg('page') || 1; + common_show_header($profile->nickname . ": " . _t('Subscriptions')); $this->show_subscriptions($profile, $page); + common_show_footer(); } function show_subscriptions($profile, $page) { |