Changeset 4989
- Timestamp:
- 02/22/2017 08:52:06 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-bbp-user-badges/inc/class-plugin.php
r4945 r4989 41 41 */ 42 42 private function __construct() { 43 self::$plugins_table_prefix = 'wporg_' . WPORG_PLUGIN_DIRECTORY_BLOGID . '_'; 44 self::$themes_table_prefix = 'wporg_' . WPORG_THEME_DIRECTORY_BLOGID . '_'; 43 global $wpdb; 44 45 self::$plugins_table_prefix = $wpdb->base_prefix . WPORG_PLUGIN_DIRECTORY_BLOGID . '_'; 46 self::$themes_table_prefix = $wpdb->base_prefix . WPORG_THEME_DIRECTORY_BLOGID . '_'; 45 47 46 48 add_action( 'bbp_loaded', array( $this, 'bbp_loaded' ) );
Note: See TracChangeset
for help on using the changeset viewer.