Fix closing tag in definition list helper.

This commit is contained in:
Franz Liedke
2012-09-14 22:21:35 +03:00
parent 5942771ce9
commit 65d4b2448b

View File

@@ -367,7 +367,7 @@ class HTML {
$html .= '<dd>'.static::entities($description).'</dd>';
}
return '<dl'.static::attributes($attributes).'>'.$html.'</'.$type.'>';
return '<dl'.static::attributes($attributes).'>'.$html.'</dl>';
}
/**