git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3947
7612ce4b-ef26-0410-bec9-
ea0150e637f0
$entities = array();
$entity_count = array();
$c = 0;
+
foreach($message->parent->entities as $ent) {
- $c++;
- $entity_count[$c] = $ent->entity_id;
- $entities[$ent->entity_id] = $c;
+ if ($ent->type0 == 'message' && $ent->type1 == 'rfc822') {
+ $c++;
+ $entity_count[$c] = $ent->entity_id;
+ $entities[$ent->entity_id] = $c;
+ }
}
$prev_link = _("Previous");
$next_link = _("Next");