diff options
author | friendica <info@friendica.com> | 2012-12-05 17:11:38 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-05 17:11:38 -0800 |
commit | 270266357d76392660703d290ab159774cfc2081 (patch) | |
tree | c04344b4f21133d40ff9b8970a7091a0dcfcb302 /mod/message.php | |
parent | 1c6f301d8faf2e6a5939e47c7a83655615bfc762 (diff) | |
download | volse-hubzilla-270266357d76392660703d290ab159774cfc2081.tar.gz volse-hubzilla-270266357d76392660703d290ab159774cfc2081.tar.bz2 volse-hubzilla-270266357d76392660703d290ab159774cfc2081.zip |
make mail replies work
Diffstat (limited to 'mod/message.php')
-rw-r--r-- | mod/message.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/message.php b/mod/message.php index 34aee10a8..9e8a54fed 100644 --- a/mod/message.php +++ b/mod/message.php @@ -437,7 +437,7 @@ logger('message: ' . print_r($message,true)); logger('mails: ' . print_r($mails,true)); - $recp = (($message['from_xchan'] === $channel['channel_hash']) ? 'to_xchan' : 'from_xchan'); + $recp = (($message['from_xchan'] === $channel['channel_hash']) ? 'to' : 'from'); $select = $message[$recp]['xchan_name'] . '<input type="hidden" name="messageto" value="' . $message[$recp]['xchan_hash'] . '" />'; $parent = '<input type="hidden" name="replyto" value="' . $message['parent_uri'] . '" />'; |