make to_user/to_profile consistent in NoticeForm

This commit is contained in:
Evan Prodromou 2011-03-28 12:13:46 -04:00
parent b0deaad700
commit b1783e8d49
1 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ class NoticeForm extends Form
var $to_group;
/** select this user from the drop-down by default. */
var $to_user;
var $to_profile;
/** Pre-click the private checkbox. */
var $private;
@ -241,7 +241,7 @@ class NoticeForm extends Form
$this->out->elementStart('div');
$toWidget = new ToSelector($this->out,
$this->user,
(!empty($this->to_group) ? $this->to_group : $this->to_user));
(!empty($this->to_group) ? $this->to_group : $this->to_profile));
$toWidget->show();
$this->out->elementEnd('div');