- Timestamp:
- 04/19/2015 04:27:37 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/templates/default/bbpress/content-statistics.php
r4794 r5688 15 15 <?php do_action( 'bbp_before_statistics' ); ?> 16 16 17 <dt><?php _e( 'Registered Users', 'bbpress' ); ?></dt>17 <dt><?php esc_html_e( 'Registered Users', 'bbpress' ); ?></dt> 18 18 <dd> 19 19 <strong><?php echo esc_html( $stats['user_count'] ); ?></strong> 20 20 </dd> 21 21 22 <dt><?php _e( 'Forums', 'bbpress' ); ?></dt>22 <dt><?php esc_html_e( 'Forums', 'bbpress' ); ?></dt> 23 23 <dd> 24 24 <strong><?php echo esc_html( $stats['forum_count'] ); ?></strong> 25 25 </dd> 26 26 27 <dt><?php _e( 'Topics', 'bbpress' ); ?></dt>27 <dt><?php esc_html_e( 'Topics', 'bbpress' ); ?></dt> 28 28 <dd> 29 29 <strong><?php echo esc_html( $stats['topic_count'] ); ?></strong> 30 30 </dd> 31 31 32 <dt><?php _e( 'Replies', 'bbpress' ); ?></dt>32 <dt><?php esc_html_e( 'Replies', 'bbpress' ); ?></dt> 33 33 <dd> 34 34 <strong><?php echo esc_html( $stats['reply_count'] ); ?></strong> 35 35 </dd> 36 36 37 <dt><?php _e( 'Topic Tags', 'bbpress' ); ?></dt>37 <dt><?php esc_html_e( 'Topic Tags', 'bbpress' ); ?></dt> 38 38 <dd> 39 39 <strong><?php echo esc_html( $stats['topic_tag_count'] ); ?></strong> … … 42 42 <?php if ( !empty( $stats['empty_topic_tag_count'] ) ) : ?> 43 43 44 <dt><?php _e( 'Empty Topic Tags', 'bbpress' ); ?></dt>44 <dt><?php esc_html_e( 'Empty Topic Tags', 'bbpress' ); ?></dt> 45 45 <dd> 46 46 <strong><?php echo esc_html( $stats['empty_topic_tag_count'] ); ?></strong> … … 51 51 <?php if ( !empty( $stats['topic_count_hidden'] ) ) : ?> 52 52 53 <dt><?php _e( 'Hidden Topics', 'bbpress' ); ?></dt>53 <dt><?php esc_html_e( 'Hidden Topics', 'bbpress' ); ?></dt> 54 54 <dd> 55 55 <strong> … … 62 62 <?php if ( !empty( $stats['reply_count_hidden'] ) ) : ?> 63 63 64 <dt><?php _e( 'Hidden Replies', 'bbpress' ); ?></dt>64 <dt><?php esc_html_e( 'Hidden Replies', 'bbpress' ); ?></dt> 65 65 <dd> 66 66 <strong>
Note: See TracChangeset
for help on using the changeset viewer.