set default address for showstream

This commit is contained in:
Evan Prodromou 2011-03-28 16:24:28 -04:00
parent a7380d5933
commit 798b03fb5f
1 changed files with 12 additions and 0 deletions

View File

@ -278,6 +278,18 @@ class ShowstreamAction extends ProfileAction
$cloud = new PersonalTagCloudSection($this, $this->user);
$cloud->show();
}
function noticeFormOptions()
{
$options = parent::noticeFormOptions();
$cur = common_current_user();
if (empty($cur) || $cur->id != $this->profile->id) {
$options['to_profile'] = $this->profile;
}
return $options;
}
}
// We don't show the author for a profile, since we already know who it is!