fixed deprecated class name for unstyled lists

This commit is contained in:
Hans Czajkowski Jørgensen
2013-12-01 16:40:18 +01:00
parent 5257831b65
commit c72a8a7e79

View File

@@ -7,7 +7,7 @@
class Roots_Walker_Comment extends Walker_Comment {
function start_lvl(&$output, $depth = 0, $args = array()) {
$GLOBALS['comment_depth'] = $depth + 1; ?>
<ul <?php comment_class('media unstyled comment-' . get_comment_ID()); ?>>
<ul <?php comment_class('media list-unstyled comment-' . get_comment_ID()); ?>>
<?php
}