Fix closing tag in definition list helper.
This commit is contained in:
parent
5942771ce9
commit
65d4b2448b
|
@ -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>';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue