Browse Source

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

pdontthink 22 năm trước cách đây
mục cha
commit
3ab34b9078
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  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);
 }