diff options
author | Brion Vibber <brion@status.net> | 2010-08-12 15:18:16 -0700 |
---|---|---|
committer | Brion Vibber <brion@status.net> | 2010-08-12 15:18:16 -0700 |
commit | d9942a558a7dfd14980788399ca6aa578039a324 (patch) | |
tree | e718306ced3c73e14ac79b10b720d8f57e8df70d /actions | |
parent | c3475e6ebef594460ec3685a007e7298fcbd9833 (diff) |
Fix regression in replies made from web (was saving reply_to value in wrong array key)
Diffstat (limited to 'actions')
-rw-r--r-- | actions/newnotice.php | 2 |
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; |