- Timestamp:
- 01/22/2024 05:54:22 AM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress-functions.php
r13672 r13709 224 224 // LTR. 225 225 if ( ! is_rtl() && isset( $ltr['location'], $ltr['handle'] ) ) { 226 wp_enqueue_style( $ltr['handle'], $ltr['location'], array( ), $this->version, 'screen' );226 wp_enqueue_style( $ltr['handle'], $ltr['location'], array( 'bp-tooltips' ), $this->version, 'screen' ); 227 227 228 228 if ( $min ) { … … 237 237 if ( isset( $rtl['location'], $rtl['handle'] ) ) { 238 238 $rtl['handle'] = str_replace( '-css', '-css-rtl', $rtl['handle'] ); // Backwards compatibility. 239 wp_enqueue_style( $rtl['handle'], $rtl['location'], array( ), $this->version, 'screen' );239 wp_enqueue_style( $rtl['handle'], $rtl['location'], array( 'bp-tooltips' ), $this->version, 'screen' ); 240 240 241 241 if ( $min ) { … … 250 250 // Use a unique handle. 251 251 $theme['handle'] = 'bp-' . get_template(); 252 wp_enqueue_style( $theme['handle'], $theme['location'], array( ), $this->version, 'screen' );252 wp_enqueue_style( $theme['handle'], $theme['location'], array( 'bp-tooltips' ), $this->version, 'screen' ); 253 253 254 254 if ( $min ) { … … 263 263 if ( isset( $theme_rtl['location'] ) ) { 264 264 $theme_rtl['handle'] = $theme['handle'] . '-rtl'; 265 wp_enqueue_style( $theme_rtl['handle'], $theme_rtl['location'], array( ), $this->version, 'screen' );265 wp_enqueue_style( $theme_rtl['handle'], $theme_rtl['location'], array( 'bp-tooltips' ), $this->version, 'screen' ); 266 266 267 267 if ( $min ) {
Note: See TracChangeset
for help on using the changeset viewer.