X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=class%2Fmime%2FContentType.class.php;h=2c5ff8f0a50fb80e58d5557c8bcf5ac9e979a5d8;hb=74b80a5157e8170c7dce66a92f607d4bb6550cb9;hp=ce1f6ec3b5edcef982995507045cdd2090228db7;hpb=4b4abf93a9624311afef0c385023724ee46a2b60;p=squirrelmail.git diff --git a/class/mime/ContentType.class.php b/class/mime/ContentType.class.php index ce1f6ec3..2c5ff8f0 100644 --- a/class/mime/ContentType.class.php +++ b/class/mime/ContentType.class.php @@ -6,7 +6,7 @@ * This file contains functions needed to handle content type headers * (rfc2045) in mime messages. * - * @copyright © 2003-2005 The SquirrelMail Project Team + * @copyright © 2003-2007 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail @@ -46,6 +46,7 @@ class ContentType { * @param string $type content type string without auxiliary information */ function ContentType($type) { + $type = strtolower($type); $pos = strpos($type, '/'); if ($pos > 0) { $this->type0 = substr($type, 0, $pos); @@ -56,5 +57,3 @@ class ContentType { $this->properties = array(); } } - -?> \ No newline at end of file