Skip to:
Content

bbPress.org

Ticket #2757: 2757.patch

File 2757.patch, 1.2 KB (added by Robkk, 9 years ago)

Using a div instead of an unordered list as the style for the walker fixes this issue for some reason.

  • src/includes/common/classes.php

     
    319319
    320320                switch ( $args['style'] ) {
    321321                        case 'div':
     322                          echo "<div class='bbp-threaded-replies'>\n";
    322323                                break;
    323324                        case 'ol':
    324325                                echo "<ol class='bbp-threaded-replies'>\n";
     
    530531                ob_start(); ?>
    531532
    532533                <option class="<?php echo esc_attr( $class ); ?>" value="<?php echo esc_attr( $value ); ?>"<?php selected( $args['selected'], $object->ID ); ?> <?php disabled( in_array( $reply_id, $ancestors ), true ); ?>><?php echo $pad . esc_html( $title ); ?></option>
    533                
     534
    534535                <?php
    535536
    536537                // Append the output buffer to the $output variable
  • src/includes/replies/functions.php

     
    24172417        $r = bbp_parse_args( $args, array(
    24182418                'walker'       => null,
    24192419                'max_depth'    => bbp_thread_replies_depth(),
    2420                 'style'        => 'ul',
     2420                'style'        => 'div',
    24212421                'callback'     => null,
    24222422                'end_callback' => null,
    24232423                'page'         => 1,