Show a new message form on message/new

This commit is contained in:
Evan Prodromou 2009-01-26 13:46:04 +01:00
parent 01c9d5e240
commit 80e04a8d9f

View File

@ -2,7 +2,7 @@
/** /**
* Laconica, the distributed open-source microblogging tool * Laconica, the distributed open-source microblogging tool
* *
* Handler for posting new notices * Handler for posting new messages
* *
* PHP version 5 * PHP version 5
* *
@ -173,6 +173,12 @@ class NewmessageAction extends Action
$this->showPage(); $this->showPage();
} }
function showContent()
{
$message_form = new MessageForm($this);
$message_form->show();
}
function notify($from, $to, $message) function notify($from, $to, $message)
{ {