Fix regression in replies made from web (was saving reply_to value in wrong array key)

This commit is contained in:
Brion Vibber 2010-08-12 15:18:16 -07:00
parent c3475e6ebe
commit d9942a558a

View File

@ -161,7 +161,7 @@ class NewnoticeAction extends Action
$replyto = intval($this->trimmed('inreplyto'));
if ($replyto) {
$options['replyto'] = $replyto;
$options['reply_to'] = $replyto;
}
$upload = null;