浏览代码

Fix variable name typo

pdontthink 8 年之前
父节点
当前提交
7d33c448da
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      class/mime/ContentType.class.php

+ 1 - 1
class/mime/ContentType.class.php

@@ -63,6 +63,6 @@ class ContentType {
      * @param string $type content type string without auxiliary information
      * @param string $type content type string without auxiliary information
      */
      */
     function ContentType($type) {
     function ContentType($type) {
-       self::__construct($name);
+       self::__construct($type);
     }
     }
 }
 }