diff options
author | support <support@bambeeq.com> | 2008-09-30 21:07:41 -0400 |
---|---|---|
committer | support <support@bambeeq.com> | 2008-09-30 21:07:41 -0400 |
commit | 3bd710d15322dca2f859382fdee5765b4aa309cb (patch) | |
tree | c9e03d0f5fbec9c76c9de48eda7d7527b583d321 | |
parent | fcca462c113a427c304809f91b2331fced6f5dc0 (diff) |
Fix replies tab pagination issue
Problem:
Before / After links in replies tab don't work. When clicked they show "No such user" error.
How to reproduce:
1. Access http://identi.ca/evan/replies
2. Click on Before button
darcs-hash:20081001010741-352e0-4cbf4afc0f12aa850c1cc7145324477157f24d98.gz
-rw-r--r-- | actions/replies.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/replies.php b/actions/replies.php index c49960370..f5bc2ce1a 100644 --- a/actions/replies.php +++ b/actions/replies.php @@ -96,6 +96,6 @@ class RepliesAction extends StreamAction { } common_pagination($page > 1, $cnt > NOTICES_PER_PAGE, - $page, 'replies', array('nickname' => $profile->nickname)); + $page, 'replies', array('nickname' => $user->nickname)); } } |