Changeset 5156 for trunk/templates/default/bbpress/user-subscriptions.php
- Timestamp:
- 11/20/2013 07:50:55 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/default/bbpress/user-subscriptions.php
r4733 r5156 17 17 18 18 <div id="bbp-user-subscriptions" class="bbp-user-subscriptions"> 19 <h2 class="entry-title"><?php _e( 'Subscribed Forum Topics', 'bbpress' ); ?></h2>19 <h2 class="entry-title"><?php _e( 'Subscribed Forums', 'bbpress' ); ?></h2> 20 20 <div class="bbp-user-section"> 21 21 22 <?php if ( bbp_get_user_subscriptions() ) : ?> 22 <?php if ( bbp_get_user_forum_subscriptions() ) : ?> 23 24 <?php bbp_get_template_part( 'loop', 'forums' ); ?> 25 26 <?php else : ?> 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 topics.', 'bbpress' ); ?></p> 29 30 <?php endif; ?> 31 32 </div> 33 34 <h2 class="entry-title"><?php _e( 'Subscribed Topics', 'bbpress' ); ?></h2> 35 <div class="bbp-user-section"> 36 37 <?php if ( bbp_get_user_topic_subscriptions() ) : ?> 23 38 24 39 <?php bbp_get_template_part( 'pagination', 'topics' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.