Changeset 9308 for trunk/src/bp-forums/bp-forums-bbpress-sa.php
- Timestamp:
- 01/07/2015 10:03:19 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/bp-forums/bp-forums-bbpress-sa.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-forums/bp-forums-bbpress-sa.php
r7756 r9308 19 19 global $bb, $bbdb, $bb_table_prefix, $bb_current_user; 20 20 global $bb_roles, $wp_taxonomy_object, $bb_queries; 21 21 22 22 // Return if we've already run this function. 23 23 if ( is_object( $bbdb ) ) … … 172 172 * 173 173 * The class is pluggable, so that plugins that swap out WPDB with a custom 174 * database class (such as HyperDB and Shar DB) can provide their own versions174 * database class (such as HyperDB and ShareDB) can provide their own versions 175 175 * of BPDB which extend the appropriate base class. 176 176 */ … … 197 197 * Determine if a database supports a particular feature. 198 198 * 199 * Overrid en here to work around differences between bbPress's199 * Overridden here to work around differences between bbPress's 200 200 * and WordPress's implementations. In particular, when 201 201 * BuddyPress tries to run bbPress' SQL installation script, … … 340 340 // Clear the field and index arrays 341 341 $cfields = $indices = array(); 342 // Get all of the field names in the query from between the paren s342 // Get all of the field names in the query from between the parents 343 343 preg_match("|\((.*)\)|ms", $cqueries[strtolower($table)], $match2); 344 344 $qryline = trim($match2[1]);
Note: See TracChangeset
for help on using the changeset viewer.