diff options
author | alecpl <alec@alec.pl> | 2010-11-19 09:45:05 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-11-19 09:45:05 +0000 |
commit | cc5ae9e3371009849beafd5e1d49be443da90112 (patch) | |
tree | 6cf3a021b1c3fb8d5842ea2807e02d13c5af9d0f /program | |
parent | d2b8840a0e1c6877716517727ec9e1bbded20733 (diff) |
- Fix last commit
Diffstat (limited to 'program')
-rw-r--r-- | program/steps/mail/compose.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index ec9b4ef0d..828a94f3b 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -505,7 +505,7 @@ function rcmail_compose_header_from($attrib) else { $field_attrib['class'] = 'from_address'; $input_from = new html_inputfield($field_attrib); - $out = $input_from->show($from_id); + $out = $input_from->show($_POST['_from']); } return $out; |