summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps
diff options
context:
space:
mode:
authorrobin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-11-16 13:04:02 +0000
committerrobin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-11-16 13:04:02 +0000
commitab0c3752e00dbd413862f08c8c191bdb7fbb3c26 (patch)
treea24324dc04bd68b7eee3abcecb7c6fc03bafa12e /roundcubemail/program/steps
parent71fb6e2b0f6b274e6c5ca18ac69188acc3a3706e (diff)
Fix variable assignment typo (Matt Kaatman).
git-svn-id: https://svn.roundcube.net/trunk@370 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps')
-rw-r--r--roundcubemail/program/steps/mail/func.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc
index 18ce9eca8..fb7b14c65 100644
--- a/roundcubemail/program/steps/mail/func.inc
+++ b/roundcubemail/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))