From: Brion Vibber Date: Thu, 12 Aug 2010 22:18:16 +0000 (-0700) Subject: Fix regression in replies made from web (was saving reply_to value in wrong array... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d9942a558a7dfd14980788399ca6aa578039a324;p=quix0rs-gnu-social.git Fix regression in replies made from web (was saving reply_to value in wrong array key) --- diff --git a/actions/newnotice.php b/actions/newnotice.php index 8f1fb1c40f..61b38786bd 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -161,7 +161,7 @@ class NewnoticeAction extends Action $replyto = intval($this->trimmed('inreplyto')); if ($replyto) { - $options['replyto'] = $replyto; + $options['reply_to'] = $replyto; } $upload = null;