Changeset 2982
- Timestamp:
- 04/03/2011 07:25:02 AM (15 years ago)
- Location:
- branches/plugin
- Files:
-
- 3 edited
-
bbp-includes/bbp-reply-template.php (modified) (1 diff)
-
bbp-themes/bbp-twentyten/bbpress/loop-replies.php (modified) (3 diffs)
-
bbp-themes/bbp-twentyten/single-topic.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-includes/bbp-reply-template.php
r2980 r2982 365 365 366 366 $reply_page = ceil( $topic_replies / get_option( '_bbp_replies_per_page', 15 ) ); 367 $reply_hash = !empty( $bbp->errors ) ? "# reply-{$reply_id}" : '';367 $reply_hash = !empty( $bbp->errors ) ? "#post-{$reply_id}" : ''; 368 368 369 369 // Don't include pagination if on first page -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/loop-replies.php
r2969 r2982 10 10 ?> 11 11 12 <?php if ( bbp_ has_replies() ) : ?>12 <?php if ( bbp_get_query_name() || bbp_has_replies() ) : ?> 13 13 14 14 <?php get_template_part( 'bbpress/pagination', 'replies' ); ?> … … 77 77 </tr> 78 78 79 <tr id=" reply-<?php bbp_reply_id(); ?>" <?php bbp_reply_class(); ?>>79 <tr id="post-<?php bbp_reply_id(); ?>" <?php bbp_reply_class(); ?>> 80 80 81 81 <td class="bbp-reply-author"><?php bbp_reply_author_link( array( 'type' => 'avatar' ) ); ?></td> … … 87 87 </td> 88 88 89 </tr><!-- # topic-<?php bbp_topic_id(); ?>-replies-->89 </tr><!-- #post-<?php bbp_topic_id(); ?> --> 90 90 91 91 <?php endwhile; ?> -
branches/plugin/bbp-themes/bbp-twentyten/single-topic.php
r2955 r2982 70 70 </tr> 71 71 72 <tr id=" reply-<?php bbp_topic_id(); ?>" <?php post_class( 'bbp-forum-topic' ); ?>>72 <tr id="post-<?php bbp_topic_id(); ?>" <?php post_class( 'bbp-forum-topic' ); ?>> 73 73 74 74 <td class="bbp-topic-author"><?php bbp_topic_author_link( array( 'type' => 'avatar' ) ); ?></td> … … 80 80 </td> 81 81 82 </tr><!-- # bbp-topic-<?php bbp_topic_id(); ?> -->82 </tr><!-- #post-<?php bbp_topic_id(); ?> --> 83 83 84 84 </tbody>
Note: See TracChangeset
for help on using the changeset viewer.