From: Evan Prodromou Date: Mon, 28 Mar 2011 16:13:46 +0000 (-0400) Subject: make to_user/to_profile consistent in NoticeForm X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b1783e8d491aa82a1ca7049cd81187624cd09a37;p=quix0rs-gnu-social.git make to_user/to_profile consistent in NoticeForm --- diff --git a/lib/noticeform.php b/lib/noticeform.php index 01a462aad1..0f4207e4ae 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -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');