summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrion Vibber <brion@status.net>2010-08-12 15:18:16 -0700
committerBrion Vibber <brion@status.net>2010-08-12 15:18:16 -0700
commitd9942a558a7dfd14980788399ca6aa578039a324 (patch)
treee718306ced3c73e14ac79b10b720d8f57e8df70d
parentc3475e6ebef594460ec3685a007e7298fcbd9833 (diff)
Fix regression in replies made from web (was saving reply_to value in wrong array key)
-rw-r--r--actions/newnotice.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php
index 8f1fb1c40..61b38786b 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;