From f557f53eac769aa1bb266621bae1961d6a2aeab4 Mon Sep 17 00:00:00 2001 From: stekkel Date: Thu, 30 May 2002 21:02:39 +0000 Subject: [PATCH] minor fix git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2918 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); -- 2.25.1