Parcourir la source

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

pdontthink il y a 22 ans
Parent
commit
3ab34b9078
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  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);
 }