Merge pull request #929 from teknologi/fix-unstyled-list

fixed deprecated class name for unstyled lists
This commit is contained in:
Foxaii
2013-12-04 04:15:18 -08:00

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
}