Commit 65d4b244 by Franz Liedke

Fix closing tag in definition list helper.

parent 5942771c
......@@ -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>';
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment