Skip to:
Content

bbPress.org

Changeset 4970


Ignore:
Timestamp:
05/28/2013 11:03:00 PM (13 years ago)
Author:
johnjamesjacoby
Message:

Topic and reply admin links don't work correctly from search results pages yet, so remove the output and logic from default template parts.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/topics/template-tags.php

    r4966 r4970  
    22492249    function bbp_get_topic_admin_links( $args = '' ) {
    22502250
    2251         if ( !bbp_is_single_topic() )
    2252             return;
    2253 
    22542251        // Parse arguments against default values
    22552252        $r = bbp_parse_args( $args, array (
  • trunk/templates/default/bbpress/loop-search-reply.php

    r4948 r4970  
    1717
    1818        <a href="<?php bbp_reply_url(); ?>" class="bbp-reply-permalink">#<?php bbp_reply_id(); ?></a>
    19 
    20         <?php do_action( 'bbp_theme_before_reply_admin_links' ); ?>
    21 
    22         <?php bbp_reply_admin_links(); ?>
    23 
    24         <?php do_action( 'bbp_theme_after_reply_admin_links' ); ?>
    2519
    2620    </div><!-- .bbp-meta -->
  • trunk/templates/default/bbpress/loop-search-topic.php

    r4948 r4970  
    1717
    1818        <a href="<?php bbp_topic_permalink(); ?>" class="bbp-topic-permalink">#<?php bbp_topic_id(); ?></a>
    19 
    20         <?php do_action( 'bbp_theme_before_topic_admin_links' ); ?>
    21 
    22         <?php bbp_topic_admin_links( bbp_get_topic_id() ); ?>
    23 
    24         <?php do_action( 'bbp_theme_after_topic_admin_links' ); ?>
    2519
    2620    </div><!-- .bbp-meta -->
Note: See TracChangeset for help on using the changeset viewer.