Fix direct addressing of messages
This commit is contained in:
parent
a80a536e41
commit
f3db32d151
@ -201,7 +201,7 @@ class NewmessageAction extends Action
|
|||||||
|
|
||||||
function showNoticeForm()
|
function showNoticeForm()
|
||||||
{
|
{
|
||||||
$message_form = new MessageForm($this);
|
$message_form = new MessageForm($this, $this->to, $this->content);
|
||||||
$message_form->show();
|
$message_form->show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -99,7 +99,6 @@ class MessageForm extends Form
|
|||||||
return common_local_url('newmessage');
|
return common_local_url('newmessage');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Legend of the Form
|
* Legend of the Form
|
||||||
*
|
*
|
||||||
@ -110,7 +109,6 @@ class MessageForm extends Form
|
|||||||
$this->out->element('legend', null, _('Send a direct notice'));
|
$this->out->element('legend', null, _('Send a direct notice'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Data elements
|
* Data elements
|
||||||
*
|
*
|
||||||
@ -137,7 +135,7 @@ class MessageForm extends Form
|
|||||||
$this->out->elementStart('ul', 'form_data');
|
$this->out->elementStart('ul', 'form_data');
|
||||||
$this->out->elementStart('li', array('id' => 'notice_to'));
|
$this->out->elementStart('li', array('id' => 'notice_to'));
|
||||||
$this->out->dropdown('to', _('To'), $mutual, null, false,
|
$this->out->dropdown('to', _('To'), $mutual, null, false,
|
||||||
$this->to->id);
|
($this->to) ? $this->to->id : null);
|
||||||
$this->out->elementEnd('li');
|
$this->out->elementEnd('li');
|
||||||
|
|
||||||
$this->out->elementStart('li', array('id' => 'notice_text'));
|
$this->out->elementStart('li', array('id' => 'notice_text'));
|
||||||
|
Loading…
Reference in New Issue
Block a user