Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
12/04/2012 12:16:42 PM (12 years ago)
Author:
johnjamesjacoby
Message:

See #4671:

  • Round one changes...
  • Remove the cumbersome update wizard and associated CSS and images.
  • Copy "About" and "Credits" pages from bbPress.
  • First pass at default components array.
  • Deprecate some functions, consolidate others.
  • Introduce bp-core/admin/bp-core-actions.php to handle admin sub-actions.
  • More to do here (update script, testing, css/images, etc...)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-cssjs.php

    r6342 r6558  
    44
    55function bp_core_confirmation_js() {
    6     global $wpdb;
    76
    8     if ( is_multisite() && $wpdb->blogid != bp_get_root_blog_id() )
     7    if ( is_multisite() && ! bp_is_root_blog() )
    98        return false;
    109
     
    1918<?php
    2019}
    21 add_action( 'wp_head', 'bp_core_confirmation_js', 100 );
     20add_action( 'wp_head',    'bp_core_confirmation_js', 100 );
     21add_action( 'admin_head', 'bp_core_confirmation_js', 100 );
    2222
    2323/**
Note: See TracChangeset for help on using the changeset viewer.