Fix regression in replies made from web (was saving reply_to value in wrong array key)
This commit is contained in:
parent
c3475e6ebe
commit
d9942a558a
@ -161,7 +161,7 @@ class NewnoticeAction extends Action
|
|||||||
|
|
||||||
$replyto = intval($this->trimmed('inreplyto'));
|
$replyto = intval($this->trimmed('inreplyto'));
|
||||||
if ($replyto) {
|
if ($replyto) {
|
||||||
$options['replyto'] = $replyto;
|
$options['reply_to'] = $replyto;
|
||||||
}
|
}
|
||||||
|
|
||||||
$upload = null;
|
$upload = null;
|
||||||
|
Loading…
Reference in New Issue
Block a user