for safety covert disposition to lowercase before we check
[squirrelmail.git] / class / mime.class.php
index 84e234f79bb2bbd04492a170e0ac14be51ee213c..c808c5aafdbdd2e65b7cc15de901f753795d6816 100644 (file)
@@ -769,14 +769,15 @@ class message {
               $this->type1 == 'message') &&
              isset($this->entity_id) ) {
             if (count($this->entities) == 0) {
-               if ($this->header->disposition->name != 'attachment') {
+               if (strtolower($this->header->disposition->name) != 'attachment') {
+                  echo $this->header->disposition->name;
                   $entity[] = $this->entity_id;
                }
             }
         } 
        $i = 0;
        while ( isset($this->entities[$i]) &&  !$found &&
-               ($this->entities[$i]->header->disposition->name 
+               (strtolower($this->entities[$i]->header->disposition->name) 
                != 'attachment') &&
                ($this->entities[$i]->type0 != 'message' && 
                  $this->entities[$i]->type1 != 'rfc822' )