diff options
| author | svncommit <devs@roundcube.net> | 2006-11-16 13:04:02 +0000 |
|---|---|---|
| committer | svncommit <devs@roundcube.net> | 2006-11-16 13:04:02 +0000 |
| commit | 2c92989663f2243af7136cefb9347eb4d0ba3b30 (patch) | |
| tree | f3cc88deaf1c60b616ad834c54df53990581f85e /program/steps/mail | |
| parent | d64c2e4871d1fc9111bc7ebc497e49269b455a7a (diff) | |
Fix variable assignment typo (Matt Kaatman).
Diffstat (limited to 'program/steps/mail')
| -rw-r--r-- | program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 18ce9eca8..fb7b14c65 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -1083,7 +1083,7 @@ function rcmail_message_body($attrib) else if ($part->type=='content') { if (empty($part->ctype_parameters) || empty($part->ctype_parameters['charset'])) - $$part->ctype_parameters['charset'] = $MESSAGE['headers']->charset; + $part->ctype_parameters['charset'] = $MESSAGE['headers']->charset; // fetch part if not available if (!isset($part->body)) |
