summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsvncommit <devs@roundcube.net>2006-11-16 13:04:02 +0000
committersvncommit <devs@roundcube.net>2006-11-16 13:04:02 +0000
commit2c92989663f2243af7136cefb9347eb4d0ba3b30 (patch)
treef3cc88deaf1c60b616ad834c54df53990581f85e
parentd64c2e4871d1fc9111bc7ebc497e49269b455a7a (diff)
Fix variable assignment typo (Matt Kaatman).
-rw-r--r--program/steps/mail/func.inc2
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))