Browse Source

Added subject retrieval when message initiated from page other than read_body.php

pdontthink 22 years ago
parent
commit
3ab34b9078
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/compose.php

+ 3 - 0
src/compose.php

@@ -536,6 +536,9 @@ elseif (isset($sigappend)) {
     if (isset($send_to_bcc)) {
        $values['send_to_bcc'] = $send_to_bcc;
     }
+    if (isset($subject)) {
+       $values['subject'] = $subject;
+    }
     showInputForm($session, $values);
 }