Changeset 4331
- Timestamp:
- 11/06/2016 09:31:13 PM (7 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-directory-compat.php
r4297 r4331 597 597 ( bbp_is_single_view() && $this->compat() == bbp_get_view_id() ) 598 598 || 599 bbp_is_subscriptions() 600 || 599 601 ( isset( $_GET['term_id'] ) && isset( $_GET['taxonomy'] ) ) 600 602 ) { … … 602 604 if ( $this->taxonomy() == $taxonomy ) { 603 605 $paged = get_query_var( 'paged' ) > 1 ? 'page/' . absint( get_query_var( 'paged' ) ) . '/' : ''; 604 $termlink = sprintf( 'https://wordpress.org/support/%s/%s/%s', $this->compat(), $t his->slug(), $paged );606 $termlink = sprintf( 'https://wordpress.org/support/%s/%s/%s', $this->compat(), $term->slug, $paged ); 605 607 } 606 608 } -
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-support-compat.php
r4309 r4331 309 309 'taxonomy' => 'topic-plugin', 310 310 'labels' => array( 311 'receipt' => __( 'You are receiving this email because you are subscribed to a plugin.', 'wporg-forums' ), 311 'subscribed_header' => __( 'Subscribed Plugins', 'wporg-forums' ), 312 'subscribed_user_notice' => __( 'You are not currently subscribed to any plugins.', 'wporg-forums' ), 313 'subscribed_anon_notice' => __( 'This user is not currently subscribed to any plugins.', 'wporg-forums' ), 314 'receipt' => __( 'You are receiving this email because you are subscribed to a plugin.', 'wporg-forums' ), 312 315 ), 313 316 ) ); … … 315 318 'taxonomy' => 'topic-theme', 316 319 'labels' => array( 317 'receipt' => __( 'You are receiving this email because you are subscribed to a theme.', 'wporg-forums' ), 320 'subscribed_header' => __( 'Subscribed Themes', 'wporg-forums' ), 321 'subscribed_user_notice' => __( 'You are not currently subscribed to any themes.', 'wporg-forums' ), 322 'subscribed_anon_notice' => __( 'This user is not currently subscribed to any themes.', 'wporg-forums' ), 323 'receipt' => __( 'You are receiving this email because you are subscribed to a theme.', 'wporg-forums' ), 318 324 ), 319 325 ) );
Note: See TracChangeset
for help on using the changeset viewer.