Skip to:
Content

bbPress.org

Changeset 3821


Ignore:
Timestamp:
03/21/2012 10:36:43 PM (13 years ago)
Author:
johnjamesjacoby
Message:

Remove 'bbpress/' from template part calls in bbp-twentyten.

  • Sub folders are handled automatically by bbp_get_template_part()
  • See #1796
Location:
branches/plugin/bbp-themes/bbp-twentyten
Files:
38 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-themes/bbp-twentyten/archive-forum.php

    r3820 r3821  
    1919                    <div class="entry-content">
    2020
    21                         <?php bbp_get_template_part( 'bbpress/content', 'archive-forum' ); ?>
     21                        <?php bbp_get_template_part( 'content', 'archive-forum' ); ?>
    2222
    2323                    </div>
  • branches/plugin/bbp-themes/bbp-twentyten/archive-topic.php

    r3820 r3821  
    1919                    <div class="entry-content">
    2020
    21                         <?php bbp_get_template_part( 'bbpress/content', 'archive-topic' ); ?>
     21                        <?php bbp_get_template_part( 'content', 'archive-topic' ); ?>
    2222
    2323                    </div>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress-functions.php

    r3780 r3821  
    1515
    1616if ( !class_exists( 'BBP_Twenty_Ten' ) ) :
     17
     18// Theme supports bbPress
     19add_theme_support( 'bbpress' );
     20
    1721/**
    1822 * Loads bbPress Twenty Ten Theme functionality
     
    5559     */
    5660    private function setup_globals() {
    57         $this->name    = 'bbPress (Twenty Ten)';
     61        $this->name    = __( 'Twenty Ten (bbPress)', 'bbpress' ) ;
    5862        $this->version = bbp_get_version();
    59         $this->dir     = get_stylesheet_directory();
    60         $this->url     = get_stylesheet_directory_uri();
     63        $this->dir     = trailingslashit( get_stylesheet_directory() );
     64        $this->url     = trailingslashit( get_stylesheet_directory_uri() );
    6165    }
    6266
     
    7175    private function setup_actions() {
    7276
    73         // Add theme support for bbPress
    74         add_action( 'after_setup_theme',        array( $this, 'add_theme_support'     ) );
    75 
    7677        // Enqueue theme CSS
    7778        add_action( 'bbp_enqueue_scripts',      array( $this, 'enqueue_styles'        ) );
     
    9192        // Handles the ajax subscribe/unsubscribe
    9293        add_action( 'wp_ajax_dim-subscription', array( $this, 'ajax_subscription'     ) );
    93     }
    94 
    95     /**
    96      * Sets up theme support for bbPress
    97      *
    98      * @since bbPress (r2652)
    99      */
    100     public function add_theme_support() {
    101         add_theme_support( 'bbpress' );
    10294    }
    10395
     
    118110
    119111            // bbPress specific
    120             wp_enqueue_style( 'bbp-twentyten-bbpress', $this->url . '/css/bbpress-rtl.css', 'twentyten-rtl', $this->version, 'screen' );
     112            wp_enqueue_style( 'bbp-twentyten-bbpress', $this->url . 'css/bbpress-rtl.css', 'twentyten-rtl', $this->version, 'screen' );
    121113
    122114        // Left to right
     
    127119
    128120            // bbPress specific
    129             wp_enqueue_style( 'bbp-twentyten-bbpress', $this->url . '/css/bbpress.css', 'twentyten', $this->version, 'screen' );
     121            wp_enqueue_style( 'bbp-twentyten-bbpress', $this->url . 'css/bbpress.css', 'twentyten', $this->version, 'screen' );
    130122        }
    131123    }
     
    143135
    144136        if ( bbp_is_single_topic() )
    145             wp_enqueue_script( 'bbp_topic', $this->url . '/js/topic.js', array( 'wp-lists' ), $this->version, true );
     137            wp_enqueue_script( 'bbp_topic', $this->url . 'js/topic.js', array( 'wp-lists' ), $this->version, true );
    146138
    147139        if ( bbp_is_single_user_edit() )
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-archive-forum.php

    r3651 r3821  
    1818    <?php if ( bbp_has_forums() ) : ?>
    1919
    20         <?php bbp_get_template_part( 'bbpress/loop',     'forums'    ); ?>
     20        <?php bbp_get_template_part( 'loop',     'forums'    ); ?>
    2121
    2222    <?php else : ?>
    2323
    24         <?php bbp_get_template_part( 'bbpress/feedback', 'no-forums' ); ?>
     24        <?php bbp_get_template_part( 'feedback', 'no-forums' ); ?>
    2525
    2626    <?php endif; ?>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-archive-topic.php

    r3820 r3821  
    1818    <?php if ( bbp_has_topics() ) : ?>
    1919
    20         <?php bbp_get_template_part( 'bbpress/pagination', 'topics'    ); ?>
     20        <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    2121
    22         <?php bbp_get_template_part( 'bbpress/loop',       'topics'    ); ?>
     22        <?php bbp_get_template_part( 'loop',       'topics'    ); ?>
    2323
    24         <?php bbp_get_template_part( 'bbpress/pagination', 'topics'    ); ?>
     24        <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    2525
    2626    <?php else : ?>
    2727
    28         <?php bbp_get_template_part( 'bbpress/feedback',   'no-topics' ); ?>
     28        <?php bbp_get_template_part( 'feedback',   'no-topics' ); ?>
    2929
    3030    <?php endif; ?>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-single-forum.php

    r3820 r3821  
    1616    <?php if ( post_password_required() ) : ?>
    1717
    18         <?php bbp_get_template_part( 'bbpress/form', 'protected' ); ?>
     18        <?php bbp_get_template_part( 'form', 'protected' ); ?>
    1919
    2020    <?php else : ?>
     
    2424        <?php if ( bbp_get_forum_subforum_count() && bbp_has_forums() ) : ?>
    2525
    26             <?php bbp_get_template_part( 'bbpress/loop', 'forums' ); ?>
     26            <?php bbp_get_template_part( 'loop', 'forums' ); ?>
    2727
    2828        <?php endif; ?>
     
    3030        <?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?>
    3131
    32             <?php bbp_get_template_part( 'bbpress/pagination', 'topics'    ); ?>
     32            <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    3333
    34             <?php bbp_get_template_part( 'bbpress/loop',       'topics'    ); ?>
     34            <?php bbp_get_template_part( 'loop',       'topics'    ); ?>
    3535
    36             <?php bbp_get_template_part( 'bbpress/pagination', 'topics'    ); ?>
     36            <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    3737
    38             <?php bbp_get_template_part( 'bbpress/form',       'topic'     ); ?>
     38            <?php bbp_get_template_part( 'form',       'topic'     ); ?>
    3939
    4040        <?php elseif( !bbp_is_forum_category() ) : ?>
    4141
    42             <?php bbp_get_template_part( 'bbpress/feedback',   'no-topics' ); ?>
     42            <?php bbp_get_template_part( 'feedback',   'no-topics' ); ?>
    4343
    44             <?php bbp_get_template_part( 'bbpress/form',       'topic'     ); ?>
     44            <?php bbp_get_template_part( 'form',       'topic'     ); ?>
    4545
    4646        <?php endif; ?>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-single-reply.php

    r3651 r3821  
    1818    <?php if ( post_password_required() ) : ?>
    1919
    20         <?php bbp_get_template_part( 'bbpress/form', 'protected' ); ?>
     20        <?php bbp_get_template_part( 'form', 'protected' ); ?>
    2121
    2222    <?php else : ?>
    2323
    24         <?php bbp_get_template_part( 'bbpress/loop', 'single-reply' ); ?>
     24        <?php bbp_get_template_part( 'loop', 'single-reply' ); ?>
    2525
    2626    <?php endif; ?>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-single-topic.php

    r3820 r3821  
    1818    <?php if ( post_password_required() ) : ?>
    1919
    20         <?php bbp_get_template_part( 'bbpress/form', 'protected' ); ?>
     20        <?php bbp_get_template_part( 'form', 'protected' ); ?>
    2121
    2222    <?php else : ?>
     
    2828        <?php if ( bbp_show_lead_topic() ) : ?>
    2929
    30             <?php bbp_get_template_part( 'bbpress/content', 'single-topic-lead' ); ?>
     30            <?php bbp_get_template_part( 'content', 'single-topic-lead' ); ?>
    3131
    3232        <?php endif; ?>
     
    3434        <?php if ( bbp_has_replies() ) : ?>
    3535
    36             <?php bbp_get_template_part( 'bbpress/pagination', 'replies' ); ?>
     36            <?php bbp_get_template_part( 'pagination', 'replies' ); ?>
    3737
    38             <?php bbp_get_template_part( 'bbpress/loop',       'replies' ); ?>
     38            <?php bbp_get_template_part( 'loop',       'replies' ); ?>
    3939
    40             <?php bbp_get_template_part( 'bbpress/pagination', 'replies' ); ?>
     40            <?php bbp_get_template_part( 'pagination', 'replies' ); ?>
    4141
    4242        <?php endif; ?>
    4343
    44         <?php bbp_get_template_part( 'bbpress/form', 'reply' ); ?>
     44        <?php bbp_get_template_part( 'form', 'reply' ); ?>
    4545
    4646    <?php endif; ?>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-single-user-edit.php

    r3820 r3821  
    1515
    1616    // Profile details
    17     bbp_get_template_part( 'bbpress/user', 'details' );
     17    bbp_get_template_part( 'user', 'details' );
    1818
    1919    // User edit form
    20     bbp_get_template_part( 'bbpress/form', 'user-edit' ); ?>
     20    bbp_get_template_part( 'form', 'user-edit' ); ?>
    2121
    2222</div>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-single-user.php

    r3820 r3821  
    1414    <?php do_action( 'bbp_template_notices' ); ?>
    1515
    16     <?php bbp_get_template_part( 'bbpress/user', 'details'        ); ?>
     16    <?php bbp_get_template_part( 'user', 'details'        ); ?>
    1717
    1818    <hr />
    1919
    20     <?php bbp_get_template_part( 'bbpress/user', 'subscriptions'  ); ?>
     20    <?php bbp_get_template_part( 'user', 'subscriptions'  ); ?>
    2121
    2222    <hr />
    2323
    24     <?php bbp_get_template_part( 'bbpress/user', 'favorites'      ); ?>
     24    <?php bbp_get_template_part( 'user', 'favorites'      ); ?>
    2525
    2626    <hr />
    2727
    28     <?php bbp_get_template_part( 'bbpress/user', 'topics-created' ); ?>
     28    <?php bbp_get_template_part( 'user', 'topics-created' ); ?>
    2929
    3030</div>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-single-view.php

    r3651 r3821  
    1818    <?php if ( bbp_view_query() ) : ?>
    1919
    20         <?php bbp_get_template_part( 'bbpress/pagination', 'topics'    ); ?>
     20        <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    2121
    22         <?php bbp_get_template_part( 'bbpress/loop',       'topics'    ); ?>
     22        <?php bbp_get_template_part( 'loop',       'topics'    ); ?>
    2323
    24         <?php bbp_get_template_part( 'bbpress/pagination', 'topics'    ); ?>
     24        <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    2525
    2626    <?php else : ?>
    2727
    28         <?php bbp_get_template_part( 'bbpress/feedback',   'no-topics' ); ?>
     28        <?php bbp_get_template_part( 'feedback',   'no-topics' ); ?>
    2929
    3030    <?php endif; ?>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/content-topic-tag-edit.php

    r3651 r3821  
    1818    <?php do_action( 'bbp_template_before_topic_tag_edit' ); ?>
    1919
    20     <?php bbp_get_template_part( 'bbpress/form', 'topic-tag' ); ?>
     20    <?php bbp_get_template_part( 'form', 'topic-tag' ); ?>
    2121
    2222    <?php do_action( 'bbp_template_after_topic_tag_edit' ); ?>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/loop-forums.php

    r3820 r3821  
    3131            <?php while ( bbp_forums() ) : bbp_the_forum(); ?>
    3232
    33                 <?php bbp_get_template_part( 'bbpress/loop', 'single-forum' ); ?>
     33                <?php bbp_get_template_part( 'loop', 'single-forum' ); ?>
    3434
    3535            <?php endwhile; ?>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/loop-replies.php

    r3820 r3821  
    5959            <?php while ( bbp_replies() ) : bbp_the_reply(); ?>
    6060
    61                 <?php bbp_get_template_part( 'bbpress/loop', 'single-reply' ); ?>
     61                <?php bbp_get_template_part( 'loop', 'single-reply' ); ?>
    6262
    6363            <?php endwhile; ?>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/loop-topics.php

    r3820 r3821  
    3131            <?php while ( bbp_topics() ) : bbp_the_topic(); ?>
    3232
    33                 <?php bbp_get_template_part( 'bbpress/loop', 'single-topic' ); ?>
     33                <?php bbp_get_template_part( 'loop', 'single-topic' ); ?>
    3434
    3535            <?php endwhile; ?>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/user-favorites.php

    r3820 r3821  
    2020            <?php if ( bbp_get_user_favorites() ) :
    2121
    22                 bbp_get_template_part( 'bbpress/pagination', 'topics' );
    23                 bbp_get_template_part( 'bbpress/loop',       'topics' );
    24                 bbp_get_template_part( 'bbpress/pagination', 'topics' );
     22                bbp_get_template_part( 'pagination', 'topics' );
     23                bbp_get_template_part( 'loop',       'topics' );
     24                bbp_get_template_part( 'pagination', 'topics' );
    2525
    2626            else : ?>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/user-subscriptions.php

    r3820 r3821  
    2424                    <?php if ( bbp_get_user_subscriptions() ) :
    2525
    26                         bbp_get_template_part( 'bbpress/pagination', 'topics' );
    27                         bbp_get_template_part( 'bbpress/loop',       'topics' );
    28                         bbp_get_template_part( 'bbpress/pagination', 'topics' );
     26                        bbp_get_template_part( 'pagination', 'topics' );
     27                        bbp_get_template_part( 'loop',       'topics' );
     28                        bbp_get_template_part( 'pagination', 'topics' );
    2929
    3030                    else : ?>
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/user-topics-created.php

    r3820 r3821  
    2020            <?php if ( bbp_get_user_topics_started() ) :
    2121
    22                 bbp_get_template_part( 'bbpress/pagination', 'topics' );
    23                 bbp_get_template_part( 'bbpress/loop',       'topics' );
    24                 bbp_get_template_part( 'bbpress/pagination', 'topics' );
     22                bbp_get_template_part( 'pagination', 'topics' );
     23                bbp_get_template_part( 'loop',       'topics' );
     24                bbp_get_template_part( 'pagination', 'topics' );
    2525
    2626            else : ?>
  • branches/plugin/bbp-themes/bbp-twentyten/page-create-topic.php

    r3820 r3821  
    2323                            <?php the_content(); ?>
    2424
    25                             <?php bbp_get_template_part( 'bbpress/form', 'topic' ); ?>
     25                            <?php bbp_get_template_part( 'form', 'topic' ); ?>
    2626
    2727                        </div>
  • branches/plugin/bbp-themes/bbp-twentyten/page-forum-statistics.php

    r3820 r3821  
    9999                                <h2 class="entry-title"><?php _e( 'Popular Topics', 'bbpress' ); ?></h2>
    100100
    101                                 <?php bbp_get_template_part( 'bbpress/pagination', 'topics' ); ?>
     101                                <?php bbp_get_template_part( 'pagination', 'topics' ); ?>
    102102
    103                                 <?php bbp_get_template_part( 'bbpress/loop',       'topics' ); ?>
     103                                <?php bbp_get_template_part( 'loop',       'topics' ); ?>
    104104
    105                                 <?php bbp_get_template_part( 'bbpress/pagination', 'topics' ); ?>
     105                                <?php bbp_get_template_part( 'pagination', 'topics' ); ?>
    106106
    107107                            <?php endif; ?>
  • branches/plugin/bbp-themes/bbp-twentyten/page-front-forums.php

    r3820 r3821  
    2323                            <?php the_content(); ?>
    2424
    25                             <?php bbp_get_template_part( 'bbpress/content', 'archive-forum' ); ?>
     25                            <?php bbp_get_template_part( 'content', 'archive-forum' ); ?>
    2626
    2727                        </div>
  • branches/plugin/bbp-themes/bbp-twentyten/page-front-topics.php

    r3820 r3821  
    2323                            <?php the_content(); ?>
    2424
    25                             <?php bbp_get_template_part( 'bbpress/content', 'archive-topic' ); ?>
     25                            <?php bbp_get_template_part( 'content', 'archive-topic' ); ?>
    2626
    2727                        </div>
  • branches/plugin/bbp-themes/bbp-twentyten/page-topics-no-replies.php

    r3820 r3821  
    2929                            <?php if ( bbp_has_topics( array( 'meta_key' => '_bbp_reply_count', 'meta_value' => '1', 'meta_compare' => '<', 'orderby' => 'date', 'show_stickies' => false ) ) ) : ?>
    3030
    31                                 <?php bbp_get_template_part( 'bbpress/pagination', 'topics'    ); ?>
     31                                <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    3232
    33                                 <?php bbp_get_template_part( 'bbpress/loop',       'topics'    ); ?>
     33                                <?php bbp_get_template_part( 'loop',       'topics'    ); ?>
    3434
    35                                 <?php bbp_get_template_part( 'bbpress/pagination', 'topics'    ); ?>
     35                                <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    3636
    3737                            <?php else : ?>
    3838
    39                                 <?php bbp_get_template_part( 'bbpress/feedback',   'no-topics' ); ?>
     39                                <?php bbp_get_template_part( 'feedback',   'no-topics' ); ?>
    4040
    4141                            <?php endif; ?>
  • branches/plugin/bbp-themes/bbp-twentyten/page-user-login.php

    r3820 r3821  
    2929                            <?php bbp_breadcrumb(); ?>
    3030
    31                             <?php bbp_get_template_part( 'bbpress/form', 'user-login' ); ?>
     31                            <?php bbp_get_template_part( 'form', 'user-login' ); ?>
    3232
    3333                        </div>
  • branches/plugin/bbp-themes/bbp-twentyten/page-user-lost-pass.php

    r3820 r3821  
    2929                            <?php bbp_breadcrumb(); ?>
    3030
    31                             <?php bbp_get_template_part( 'bbpress/form', 'user-lost-pass' ); ?>
     31                            <?php bbp_get_template_part( 'form', 'user-lost-pass' ); ?>
    3232
    3333                        </div>
  • branches/plugin/bbp-themes/bbp-twentyten/page-user-register.php

    r3820 r3821  
    2929                            <?php bbp_breadcrumb(); ?>
    3030
    31                             <?php bbp_get_template_part( 'bbpress/form', 'user-register' ); ?>
     31                            <?php bbp_get_template_part( 'form', 'user-register' ); ?>
    3232
    3333                        </div>
  • branches/plugin/bbp-themes/bbp-twentyten/single-forum-edit.php

    r3820 r3821  
    1919                        <div class="entry-content">
    2020
    21                             <?php bbp_get_template_part( 'bbpress/form', 'forum' ); ?>
     21                            <?php bbp_get_template_part( 'form', 'forum' ); ?>
    2222
    2323                        </div>
  • branches/plugin/bbp-themes/bbp-twentyten/single-forum.php

    r3820 r3821  
    2323                            <div class="entry-content">
    2424
    25                                 <?php bbp_get_template_part( 'bbpress/content', 'single-forum' ); ?>
     25                                <?php bbp_get_template_part( 'content', 'single-forum' ); ?>
    2626
    2727                            </div>
     
    3030                    <?php else : // Forum exists, user no access ?>
    3131
    32                         <?php bbp_get_template_part( 'bbpress/feedback', 'no-access' ); ?>
     32                        <?php bbp_get_template_part( 'feedback', 'no-access' ); ?>
    3333
    3434                    <?php endif; ?>
  • branches/plugin/bbp-themes/bbp-twentyten/single-reply-edit.php

    r3820 r3821  
    1919                        <div class="entry-content">
    2020
    21                             <?php bbp_get_template_part( 'bbpress/form', 'reply' ); ?>
     21                            <?php bbp_get_template_part( 'form', 'reply' ); ?>
    2222
    2323                        </div>
  • branches/plugin/bbp-themes/bbp-twentyten/single-topic-edit.php

    r3820 r3821  
    1919                        <div class="entry-content">
    2020
    21                             <?php bbp_get_template_part( 'bbpress/form', 'topic' ); ?>
     21                            <?php bbp_get_template_part( 'form', 'topic' ); ?>
    2222
    2323                        </div>
  • branches/plugin/bbp-themes/bbp-twentyten/single-topic-merge.php

    r3820 r3821  
    2121                        <div class="entry-content">
    2222
    23                             <?php bbp_get_template_part( 'bbpress/form', 'topic-merge' ); ?>
     23                            <?php bbp_get_template_part( 'form', 'topic-merge' ); ?>
    2424
    2525                        </div>
  • branches/plugin/bbp-themes/bbp-twentyten/single-topic-split.php

    r3820 r3821  
    2121                        <div class="entry-content">
    2222
    23                             <?php bbp_get_template_part( 'bbpress/form', 'topic-split' ); ?>
     23                            <?php bbp_get_template_part( 'form', 'topic-split' ); ?>
    2424
    2525                        </div>
  • branches/plugin/bbp-themes/bbp-twentyten/single-topic.php

    r3820 r3821  
    2323                            <div class="entry-content">
    2424
    25                                 <?php bbp_get_template_part( 'bbpress/content', 'single-topic' ); ?>
     25                                <?php bbp_get_template_part( 'content', 'single-topic' ); ?>
    2626
    2727                            </div>
     
    3232                <?php elseif ( bbp_is_forum_private( bbp_get_topic_forum_id(), false ) ) : ?>
    3333
    34                     <?php bbp_get_template_part( 'bbpress/feedback', 'no-access' ); ?>
     34                    <?php bbp_get_template_part( 'feedback', 'no-access' ); ?>
    3535
    3636                <?php endif; ?>
  • branches/plugin/bbp-themes/bbp-twentyten/single-user-edit.php

    r3820 r3821  
    1616                    <div class="entry-content">
    1717
    18                         <?php bbp_get_template_part( 'bbpress/content', 'single-user-edit'   ); ?>
     18                        <?php bbp_get_template_part( 'content', 'single-user-edit'   ); ?>
    1919
    2020                    </div><!-- .entry-content -->
  • branches/plugin/bbp-themes/bbp-twentyten/single-user.php

    r3820 r3821  
    1616                    <div class="entry-content">
    1717
    18                         <?php bbp_get_template_part( 'bbpress/content', 'single-user' ); ?>
     18                        <?php bbp_get_template_part( 'content', 'single-user' ); ?>
    1919
    2020                    </div><!-- .entry-content -->
  • branches/plugin/bbp-themes/bbp-twentyten/single-view.php

    r3820 r3821  
    1919                    <div class="entry-content">
    2020
    21                         <?php bbp_get_template_part( 'bbpress/content', 'single-view' ); ?>
     21                        <?php bbp_get_template_part( 'content', 'single-view' ); ?>
    2222
    2323                    </div>
  • branches/plugin/bbp-themes/bbp-twentyten/taxonomy-topic-tag-edit.php

    r3820 r3821  
    2626                        <?php do_action( 'bbp_template_before_topic_tag_edit' ); ?>
    2727
    28                         <?php bbp_get_template_part( 'bbpress/form', 'topic-tag' ); ?>
     28                        <?php bbp_get_template_part( 'form', 'topic-tag' ); ?>
    2929
    3030                        <?php do_action( 'bbp_template_after_topic_tag_edit' ); ?>
  • branches/plugin/bbp-themes/bbp-twentyten/taxonomy-topic-tag.php

    r3820 r3821  
    2828                        <?php if ( bbp_has_topics() ) : ?>
    2929
    30                             <?php bbp_get_template_part( 'bbpress/pagination', 'topics'    ); ?>
     30                            <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    3131
    32                             <?php bbp_get_template_part( 'bbpress/loop',       'topics'    ); ?>
     32                            <?php bbp_get_template_part( 'loop',       'topics'    ); ?>
    3333
    34                             <?php bbp_get_template_part( 'bbpress/pagination', 'topics'    ); ?>
     34                            <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    3535
    3636                        <?php else : ?>
    3737
    38                             <?php bbp_get_template_part( 'bbpress/feedback',   'no-topics' ); ?>
     38                            <?php bbp_get_template_part( 'feedback',   'no-topics' ); ?>
    3939
    4040                        <?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.