Skip to:
Content

bbPress.org

Changeset 3906


Ignore:
Timestamp:
05/17/2012 03:28:57 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Theme Actions:

  • Swap incorrect before/after actions in topic-lead and loop-single-reply templates.
  • Props sorich87.
  • Fixes #1825.
Location:
branches/plugin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-theme-compat/bbpress/content-single-topic-lead.php

    r3861 r3906  
    7474            <div class="bbp-topic-content">
    7575
    76                 <?php do_action( 'bbp_theme_after_topic_content' ); ?>
     76                <?php do_action( 'bbp_theme_before_topic_content' ); ?>
    7777
    7878                <?php bbp_topic_content(); ?>
    7979
    80                 <?php do_action( 'bbp_theme_before_topic_content' ); ?>
     80                <?php do_action( 'bbp_theme_after_topic_content' ); ?>
    8181
    8282            </div><!-- .bbp-topic-content -->
  • branches/plugin/bbp-theme-compat/bbpress/loop-single-reply.php

    r3861 r3906  
    5252    <div class="bbp-reply-content">
    5353
    54         <?php do_action( 'bbp_theme_after_reply_content' ); ?>
     54        <?php do_action( 'bbp_theme_before_reply_content' ); ?>
    5555
    5656        <?php bbp_reply_content(); ?>
    5757
    58         <?php do_action( 'bbp_theme_before_reply_content' ); ?>
     58        <?php do_action( 'bbp_theme_after_reply_content' ); ?>
    5959
    6060    </div><!-- .bbp-reply-content -->
  • branches/plugin/bbp-themes/bbp-twentyten/bbpress/loop-single-reply.php

    r3861 r3906  
    5050        <td class="bbp-reply-content">
    5151
    52             <?php do_action( 'bbp_theme_after_reply_content' ); ?>
     52            <?php do_action( 'bbp_theme_before_reply_content' ); ?>
    5353
    5454            <?php bbp_reply_content(); ?>
    5555
    56             <?php do_action( 'bbp_theme_before_reply_content' ); ?>
     56            <?php do_action( 'bbp_theme_after_reply_content' ); ?>
    5757
    5858        </td>
Note: See TracChangeset for help on using the changeset viewer.