diff options
author | Evan Prodromou <evan@status.net> | 2010-04-30 15:00:55 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-04-30 15:00:55 -0400 |
commit | 3f2c805652cd641f82af41cd5f92cb54d0457a59 (patch) | |
tree | ead13aee17392f4fa9f03ba61ab30ba3b247ee2e /actions/subscribers.php | |
parent | 50bfa218141a30c5041957aae60b9be78fe74950 (diff) | |
parent | ecfe6b89443227854c057bb45b107368b860ad02 (diff) |
Merge branch 'master' of gitorious.org:statusnet/mainline
Diffstat (limited to 'actions/subscribers.php')
-rw-r--r-- | actions/subscribers.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/actions/subscribers.php b/actions/subscribers.php index 6f1520b3f..2845a498e 100644 --- a/actions/subscribers.php +++ b/actions/subscribers.php @@ -157,9 +157,13 @@ class SubscribersListItem extends SubscriptionListItem $user = common_current_user(); if (!empty($user) && $this->owner->id == $user->id) { - $bf = new BlockForm($this->out, $this->profile, - array('action' => 'subscribers', - 'nickname' => $this->owner->nickname)); + $returnto = array('action' => 'subscribers', + 'nickname' => $this->owner->nickname); + $page = $this->out->arg('page'); + if ($page) { + $returnto['param-page'] = $page; + } + $bf = new BlockForm($this->out, $this->profile, $returnto); $bf->show(); } } |