- Timestamp:
- 04/19/2015 04:27:37 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/templates/default/bbpress/user-subscriptions.php
r5159 r5688 17 17 18 18 <div id="bbp-user-subscriptions" class="bbp-user-subscriptions"> 19 <h2 class="entry-title"><?php _e( 'Subscribed Forums', 'bbpress' ); ?></h2>19 <h2 class="entry-title"><?php esc_html_e( 'Subscribed Forums', 'bbpress' ); ?></h2> 20 20 <div class="bbp-user-section"> 21 21 … … 26 26 <?php else : ?> 27 27 28 <p><?php bbp_is_user_home() ? _e( 'You are not currently subscribed to any forums.', 'bbpress' ) : _e( 'This user is not currently subscribed to any forums.', 'bbpress' ); ?></p> 28 <p><?php bbp_is_user_home() 29 ? esc_html_e( 'You are not currently subscribed to any forums.', 'bbpress' ) 30 : esc_html_e( 'This user is not currently subscribed to any forums.', 'bbpress' ); 31 ?></p> 29 32 30 33 <?php endif; ?> … … 32 35 </div> 33 36 34 <h2 class="entry-title"><?php _e( 'Subscribed Topics', 'bbpress' ); ?></h2>37 <h2 class="entry-title"><?php esc_html_e( 'Subscribed Topics', 'bbpress' ); ?></h2> 35 38 <div class="bbp-user-section"> 36 39 … … 45 48 <?php else : ?> 46 49 47 <p><?php bbp_is_user_home() ? _e( 'You are not currently subscribed to any topics.', 'bbpress' ) : _e( 'This user is not currently subscribed to any topics.', 'bbpress' ); ?></p> 50 <p><?php bbp_is_user_home() 51 ? esc_html_e( 'You are not currently subscribed to any topics.', 'bbpress' ) 52 : esc_html_e( 'This user is not currently subscribed to any topics.', 'bbpress' ); 53 ?></p> 48 54 49 55 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.