Changeset 3842 for branches/plugin/bbp-includes/bbp-core-widgets.php
- Timestamp:
- 04/15/2012 03:42:34 AM (14 years ago)
- File:
-
- 1 edited
-
branches/plugin/bbp-includes/bbp-core-widgets.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-includes/bbp-core-widgets.php
r3825 r3842 565 565 566 566 <li> 567 <a class="bbp-forum-title" href="<?php bbp_topic_permalink(); ?>" title="<?php bbp_topic_title(); ?>"><?php bbp_topic_title(); ?></a><?php if ( $show_date == 'on' ) printf( __( ', %s ago', 'bbpress' ), bbp_get_topic_last_active_time()); ?>567 <a class="bbp-forum-title" href="<?php bbp_topic_permalink(); ?>" title="<?php bbp_topic_title(); ?>"><?php bbp_topic_title(); ?></a><?php if ( 'on' == $show_date ) bbp_get_topic_last_active_time(); ?> 568 568 </li> 569 569 … … 594 594 <?php foreach ( $topics as $topic_id => $topic_reply_count ) : ?> 595 595 596 <li><a class="bbp-topic-title" href="<?php bbp_topic_permalink( $topic_id ); ?>" title="<?php bbp_topic_title( $topic_id ); ?>"><?php bbp_topic_title( $topic_id ); ?></a><?php if ( $show_date == 'on' ) printf( __( ', %s ago', 'bbpress' ), bbp_get_topic_last_active_time( $topic_id )); ?></li>596 <li><a class="bbp-topic-title" href="<?php bbp_topic_permalink( $topic_id ); ?>" title="<?php bbp_topic_title( $topic_id ); ?>"><?php bbp_topic_title( $topic_id ); ?></a><?php if ( 'on' == $show_date ) bbp_get_topic_last_active_time( $topic_id ); ?></li> 597 597 598 598 <?php
Note: See TracChangeset
for help on using the changeset viewer.