Skip to:
Content

BuddyPress.org

Ticket #6189: 6189.2.patch

File 6189.2.patch, 2.6 KB (added by dontdream, 10 years ago)
  • src/bp-groups/bp-groups-template.php

     
    340340                                $this->pag_arg => '%#%'
    341341                        );
    342342
    343                         if ( defined( 'DOING_AJAX' ) && true === (bool) DOING_AJAX ) {
    344                                 $base = remove_query_arg( 's', wp_get_referer() );
    345                         } else {
    346                                 $base = '';
    347                         }
    348 
    349343                        $add_args = array(
    350344                                'num'     => $this->pag_num,
    351345                                'sortby'  => $this->sort_by,
     
    357351                        }
    358352
    359353                        $this->pag_links = paginate_links( array(
    360                                 'base'      => add_query_arg( $pag_args, $base ),
     354                                'base'      => add_query_arg( $pag_args, '' ),
    361355                                'format'    => '',
    362356                                'total'     => ceil( (int) $this->total_group_count / (int) $this->pag_num ),
    363357                                'current'   => $this->pag_page,
  • src/bp-members/bp-members-template.php

     
    316316                                $this->pag_arg => '%#%',
    317317                        );
    318318
    319                         if ( defined( 'DOING_AJAX' ) && true === (bool) DOING_AJAX ) {
    320                                 $base = remove_query_arg( 's', wp_get_referer() );
    321                         } else {
    322                                 $base = '';
    323                         }
    324 
    325319                        /**
    326320                         * Defaults to an empty array to make sure paginate_links()
    327321                         * won't add the $page_arg to the links which would break
     
    334328                        }
    335329
    336330                        $this->pag_links = paginate_links( array(
    337                                 'base'      => add_query_arg( $pag_args, $base ),
     331                                'base'      => add_query_arg( $pag_args, '' ),
    338332                                'format'    => '',
    339333                                'total'     => ceil( (int) $this->total_member_count / (int) $this->pag_num ),
    340334                                'current'   => (int) $this->pag_page,
  • src/bp-messages/bp-messages-template.php

     
    208208                                $r['page_arg'] => '%#%',
    209209                        );
    210210
    211                         if ( defined( 'DOING_AJAX' ) && true === (bool) DOING_AJAX ) {
    212                                 $base = remove_query_arg( 's', wp_get_referer() );
    213                         } else {
    214                                 $base = '';
    215                         }
    216 
    217211                        $add_args = array();
    218212
    219213                        if ( ! empty( $this->search_terms ) ) {
     
    221215                        }
    222216
    223217                        $this->pag_links = paginate_links( array(
    224                                 'base'      => add_query_arg( $pag_args, $base ),
     218                                'base'      => add_query_arg( $pag_args, '' ),
    225219                                'format'    => '',
    226220                                'total'     => ceil( (int) $this->total_thread_count / (int) $this->pag_num ),
    227221                                'current'   => $this->pag_page,