Fix variable name typo
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 10 Dec 2016 10:34:21 +0000 (10:34 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 10 Dec 2016 10:34:21 +0000 (10:34 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14620 7612ce4b-ef26-0410-bec9-ea0150e637f0

class/mime/ContentType.class.php

index 86433aa37ba133ac31a3e4d1b16d036c46da37d5..347d5b18e2d6d251c81c1187691cae66291bf579 100644 (file)
@@ -63,6 +63,6 @@ class ContentType {
      * @param string $type content type string without auxiliary information
      */
     function ContentType($type) {
-       self::__construct($name);
+       self::__construct($type);
     }
 }