Changeset 3861
- Timestamp:
- 05/01/2012 10:15:01 PM (13 years ago)
- Location:
- branches/plugin
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-includes/bbp-reply-template.php
r3860 r3861 965 965 'size' => 80, 966 966 'sep' => ' ', 967 'show_role' => true967 'show_role' => false 968 968 ); 969 969 $r = bbp_parse_args( $args, $defaults, 'get_reply_author_link' ); -
branches/plugin/bbp-includes/bbp-topic-template.php
r3860 r3861 1231 1231 'size' => 80, 1232 1232 'sep' => ' ', 1233 'show_role' => true1233 'show_role' => false 1234 1234 ); 1235 1235 $r = bbp_parse_args( $args, $defaults, 'get_topic_author_link' ); -
branches/plugin/bbp-theme-compat/bbpress/content-single-topic-lead.php
r3734 r3861 56 56 <?php do_action( 'bbp_theme_before_topic_author_details' ); ?> 57 57 58 <?php bbp_topic_author_link( array( 'sep' => '<br />' ) ); ?>58 <?php bbp_topic_author_link( array( 'sep' => '<br />', 'show_role' => true ) ); ?> 59 59 60 60 <?php if ( is_super_admin() ) : ?> -
branches/plugin/bbp-theme-compat/bbpress/loop-single-reply.php
r3734 r3861 34 34 <?php do_action( 'bbp_theme_before_reply_author_details' ); ?> 35 35 36 <?php bbp_reply_author_link( array( 'sep' => '<br />' ) ); ?>36 <?php bbp_reply_author_link( array( 'sep' => '<br />', 'show_role' => true ) ); ?> 37 37 38 38 <?php if ( is_super_admin() ) : ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-single-topic-lead.php
r3820 r3861 54 54 <td class="bbp-topic-author"> 55 55 56 <?php bbp_topic_author_link( array( 'sep' => '<br />' ) ); ?>56 <?php bbp_topic_author_link( array( 'sep' => '<br />', 'show_role' => true ) ); ?> 57 57 58 58 <?php if ( is_super_admin() ) : ?> -
branches/plugin/bbp-themes/bbp-twentyten/bbpress/loop-single-reply.php
r3820 r3861 32 32 <?php do_action( 'bbp_theme_before_reply_author_details' ); ?> 33 33 34 <?php bbp_reply_author_link( array( 'sep' => '<br />' ) ); ?>34 <?php bbp_reply_author_link( array( 'sep' => '<br />', 'show_role' => true ) ); ?> 35 35 36 36 <?php if ( is_super_admin() ) : ?>
Note: See TracChangeset
for help on using the changeset viewer.