Skip to:
Content

bbPress.org


Ignore:
Timestamp:
09/10/2011 10:27:19 PM (13 years ago)
Author:
johnjamesjacoby
Message:

API adjustments:

  • Refactor _status_ vars into callable functions.
  • Audit usage of $bbp global.
  • Perform get_class() checks on extensions to avoid errors if global $bbp is overloaded.
  • Bump DB version to 175.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-includes/bbp-extend-genesis.php

    r3500 r3505  
    163163    if ( basename( TEMPLATEPATH ) !== 'genesis' ) return;
    164164
     165    // Bail if bbPress is not loaded
     166    if ( 'bbPress' !== get_class( $bbp ) ) return;
     167
    165168    // Instantiate Genesis for bbPress
    166169    $bbp->extend->genesis = new BBP_Genesis();
Note: See TracChangeset for help on using the changeset viewer.