From: support Date: Wed, 1 Oct 2008 01:07:41 +0000 (-0400) Subject: Fix replies tab pagination issue X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3bd710d15322dca2f859382fdee5765b4aa309cb;p=quix0rs-gnu-social.git 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 --- diff --git a/actions/replies.php b/actions/replies.php index c49960370f..f5bc2ce1a4 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)); } }