From: pdontthink Date: Sat, 10 Dec 2016 10:34:21 +0000 (+0000) Subject: Fix variable name typo X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=77e3ccf6cec41d76af875009610614e4216f63d3;p=squirrelmail.git Fix variable name typo git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14620 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/class/mime/ContentType.class.php b/class/mime/ContentType.class.php index 86433aa3..347d5b18 100644 --- a/class/mime/ContentType.class.php +++ b/class/mime/ContentType.class.php @@ -63,6 +63,6 @@ class ContentType { * @param string $type content type string without auxiliary information */ function ContentType($type) { - self::__construct($name); + self::__construct($type); } }