diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-24 18:28:47 +0100 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-24 18:28:47 +0100 |
commit | 4c9f3297f26d638539caede727e35aa5b54174a1 (patch) | |
tree | 0546627fcca65b784968354d73a8b396b3bd623f /actions | |
parent | db4271692a10f521c322581f3470c06d06ef18fb (diff) |
fix title on replies
Diffstat (limited to 'actions')
-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 5777d17fd..9ec373a96 100644 --- a/actions/replies.php +++ b/actions/replies.php @@ -116,7 +116,7 @@ class RepliesAction extends Action return sprintf(_("Replies to %s"), $this->user->nickname); } else { return sprintf(_("Replies to %s, page %d"), - $profile->nickname, + $this->user->nickname, $this->page); } } |