浏览代码

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

pdontthink 22 年之前
父节点
当前提交
3ab34b9078
共有 1 个文件被更改,包括 3 次插入0 次删除
  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);
 }