- Timestamp:
- 11/27/2011 09:57:44 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-themes/bbp-twentyten/bbpress/loop-single-topic.php
r3464 r3634 10 10 ?> 11 11 12 < trid="topic-<?php bbp_topic_id(); ?>" <?php bbp_topic_class(); ?>>12 <ul id="topic-<?php bbp_topic_id(); ?>" <?php bbp_topic_class(); ?>> 13 13 14 < tdclass="bbp-topic-title">14 <li class="bbp-topic-title"> 15 15 16 16 <?php do_action( 'bbp_theme_before_topic_title' ); ?> … … 46 46 <?php do_action( 'bbp_theme_after_topic_meta' ); ?> 47 47 48 </ td>48 </li> 49 49 50 < td class="bbp-topic-voice-count"><?php bbp_topic_voice_count(); ?></td>50 <li class="bbp-topic-voice-count"><?php bbp_topic_voice_count(); ?></li> 51 51 52 < td class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? bbp_topic_reply_count() : bbp_topic_post_count(); ?></td>52 <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? bbp_topic_reply_count() : bbp_topic_post_count(); ?></li> 53 53 54 < tdclass="bbp-topic-freshness">54 <li class="bbp-topic-freshness"> 55 55 56 56 <?php do_action( 'bbp_theme_before_topic_freshness_link' ); ?> … … 69 69 70 70 </p> 71 </ td>71 </li> 72 72 73 73 <?php if ( bbp_is_user_home() ) : ?> … … 75 75 <?php if ( bbp_is_favorites() ) : ?> 76 76 77 < tdclass="bbp-topic-action">77 <li class="bbp-topic-action"> 78 78 79 79 <?php do_action( 'bbp_theme_before_topic_favorites_action' ); ?> … … 83 83 <?php do_action( 'bbp_theme_after_topic_favorites_action' ); ?> 84 84 85 </ td>85 </li> 86 86 87 87 <?php elseif ( bbp_is_subscriptions() ) : ?> 88 88 89 < tdclass="bbp-topic-action">89 <li class="bbp-topic-action"> 90 90 91 91 <?php do_action( 'bbp_theme_before_topic_subscription_action' ); ?> … … 95 95 <?php do_action( 'bbp_theme_after_topic_subscription_action' ); ?> 96 96 97 </ td>97 </li> 98 98 99 99 <?php endif; ?> … … 101 101 <?php endif; ?> 102 102 103 </ tr><!-- #topic-<?php bbp_topic_id(); ?> -->103 </ul><!-- #topic-<?php bbp_topic_id(); ?> -->
Note: See TracChangeset
for help on using the changeset viewer.