Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/17/2011 08:34:53 PM (13 years ago)
Author:
johnjamesjacoby
Message:

Normalize index actions in bp-default. Fixes regression from 1.2.9. Fixes #3484.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/blogs/index.php

    r4676 r4994  
    1212<?php get_header( 'buddypress' ); ?>
    1313
    14     <?php do_action( 'bp_before_directory_blogs_content' ); ?>
     14    <?php do_action( 'bp_before_directory_blogs_page' ); ?>
    1515
    1616    <div id="content">
    1717        <div class="padder">
    1818
     19        <?php do_action( 'bp_before_directory_blogs' ); ?>
     20
    1921        <form action="" method="post" id="blogs-directory-form" class="dir-form">
    2022
    2123            <h3><?php _e( 'Site Directory', 'buddypress' ); ?><?php if ( is_user_logged_in() && bp_blog_signup_enabled() ) : ?> &nbsp;<a class="button" href="<?php echo bp_get_root_domain() . '/' . bp_get_blogs_slug() . '/create/' ?>"><?php _e( 'Create a Site', 'buddypress' ); ?></a><?php endif; ?></h3>
     24
     25            <?php do_action( 'bp_before_directory_blogs_content' ); ?>
    2226
    2327            <div id="blog-dir-search" class="dir-search" role="search">
     
    7175
    7276            <?php wp_nonce_field( 'directory_blogs', '_wpnonce-blogs-filter' ); ?>
     77           
     78            <?php do_action( 'bp_after_directory_blogs_content' ); ?>
    7379
    7480        </form><!-- #blogs-directory-form -->
     81
     82        <?php do_action( 'bp_after_directory_blogs' ); ?>
    7583
    7684        </div><!-- .padder -->
    7785    </div><!-- #content -->
    7886
    79     <?php do_action( 'bp_after_directory_blogs_content' ); ?>
     87    <?php do_action( 'bp_after_directory_blogs_page' ); ?>
    8088
    8189<?php get_sidebar( 'buddypress' ); ?>
Note: See TracChangeset for help on using the changeset viewer.