summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-05-17 15:14:30 -0400
committerEvan Prodromou <evan@prodromou.name>2008-05-17 15:14:30 -0400
commit5bf2853b601b12a7c64a98fb6726e225170b8fb7 (patch)
tree0e0d1f1aa70a36e236e543056b799d65cc037dea /actions
parent66d1ad981108bc1d93ca7baf685b806238499f61 (diff)
change profile argument to nickname
darcs-hash:20080517191430-84dde-bdaffcd7b2704a8a3636db7c7ebbc43c8d826198.gz
Diffstat (limited to 'actions')
-rw-r--r--actions/showstream.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/showstream.php b/actions/showstream.php
index f608d80cb..c4908101b 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -30,7 +30,7 @@ class ShowstreamAction extends StreamAction {
parent::handle($args);
- $nickname = common_canonical_nickname($this->arg('profile'));
+ $nickname = common_canonical_nickname($this->arg('nickname'));
$user = User::staticGet('nickname', $nickname);
if (!$user) {
@@ -171,7 +171,7 @@ class ShowstreamAction extends StreamAction {
}
common_element('a', array('href' => common_local_url('subscriptions',
- array('profile' => $profile->nickname)),
+ array('nickname' => $profile->nickname)),
'class' => 'moresubscriptions'),
_t('All subscriptions'));