From: stekkel Date: Thu, 30 May 2002 21:02:39 +0000 (+0000) Subject: minor fix X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=f557f53eac769aa1bb266621bae1961d6a2aeab4;p=squirrelmail.git minor fix git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2918 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/src/read_body.php b/src/read_body.php index 8176ebbc..826324aa 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -617,9 +617,9 @@ if ($message->header->type0 == 'multipart' && $message->header->type1 == 'digest /* first step in displaying multiple entities */ $ent_ar = findDisplayEntity($message,true); -$ent_num = $ent_num_ar[0]; +$ent_num = $ent_ar[0]; for ($i = 1 ; $i < count($ent_ar); $i++) { - $ent_num .= '_'.$ent_num_ar[$i]; + $ent_num .= '_'.$ent_ar[$i]; } /** TEXT STRINGS DEFINITIONS **/ $echo_more = _("more");