diff options
author | friendica <info@friendica.com> | 2012-05-10 20:01:13 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-10 20:01:13 -0700 |
commit | 8a5dcf64d84b98bda80e0346d508efc072c50002 (patch) | |
tree | c1c90892400ef5d5916f35e1d65a23b860480875 /mod | |
parent | 547007e1993a21347db327f5c030dd1dac60f28f (diff) | |
download | volse-hubzilla-8a5dcf64d84b98bda80e0346d508efc072c50002.tar.gz volse-hubzilla-8a5dcf64d84b98bda80e0346d508efc072c50002.tar.bz2 volse-hubzilla-8a5dcf64d84b98bda80e0346d508efc072c50002.zip |
fix PM replies after autocomplete changes
Diffstat (limited to 'mod')
-rw-r--r-- | mod/message.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/mod/message.php b/mod/message.php index 29a2fa253..71f83b47a 100644 --- a/mod/message.php +++ b/mod/message.php @@ -172,7 +172,7 @@ function message_content(&$a) { )); $preselect = (isset($a->argv[2])?array($a->argv[2]):false); - + $prename = $preurl = $preid = ''; @@ -188,7 +188,7 @@ function message_content(&$a) { } } - $prefill = (($preselect) ? $prename . ' [' . $preurl . ']' : ''); + $prefill = (($preselect) ? $prename : ''); // the ugly select box @@ -198,6 +198,7 @@ function message_content(&$a) { $o .= replace_macros($tpl,array( '$header' => t('Send Private Message'), '$to' => t('To:'), + '$showinputs' => 'true', '$prefill' => $prefill, '$autocomp' => $autocomp, '$preid' => $preid, @@ -376,9 +377,10 @@ function message_content(&$a) { $seen = $message['seen']; } + + $select = $message['name'] . '<input type="hidden" name="messageto" value="' . $contact_id . '" />'; $parent = '<input type="hidden" name="replyto" value="' . $message['parent-uri'] . '" />'; - $tpl = get_markup_template('mail_display.tpl'); $o = replace_macros($tpl, array( @@ -393,6 +395,7 @@ function message_content(&$a) { // reply '$header' => t('Send Reply'), '$to' => t('To:'), + '$showinputs' => '', '$subject' => t('Subject:'), '$subjtxt' => template_escape($message['title']), '$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ', |