]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix regression in replies made from web (was saving reply_to value in wrong array...
authorBrion Vibber <brion@status.net>
Thu, 12 Aug 2010 22:18:16 +0000 (15:18 -0700)
committerBrion Vibber <brion@status.net>
Thu, 12 Aug 2010 22:18:16 +0000 (15:18 -0700)
actions/newnotice.php

index 8f1fb1c40f74a79349d9cb65c071541988d2b232..61b38786bd5a27402977eda90966727530f3095d 100644 (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;