Ticket #2844: 2844.1.diff
File 2844.1.diff, 861 bytes (added by , 10 years ago) |
---|
-
includes/replies/template.php
2667 2667 // Add reply_to to the post object so we can walk it later 2668 2668 $post->reply_to = $_reply_to; 2669 2669 } 2670 $show_none = ( 0 !== $reply_id ) ? _x('None', 'Default reply to dropdown text', 'bbpress') : sprintf( esc_attr__( '%1$s - %2$s', 'bbpress' ), $topic_id, bbp_get_topic_title( $topic_id ) ); 2670 2671 2671 2672 // Get the dropdown and return it 2672 2673 $retval = bbp_get_dropdown( array( 2673 'show_none' => sprintf( esc_attr__( '%1$s - %2$s', 'bbpress' ), $topic_id, bbp_get_topic_title( $topic_id ) ),2674 'show_none' => $show_none, 2674 2675 'select_id' => 'bbp_reply_to', 2675 2676 'select_class' => 'bbp_dropdown', 2676 2677 'exclude' => $reply_id,