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
1 changed files with 1 additions and 1 deletions

View File

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