Changeset 5465
- Timestamp:
- 12/08/2011 09:08:01 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-adminbar.php
r5346 r5465 58 58 // Admin bar styles 59 59 if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) 60 $stylesheet = BP_PLUGIN_URL . ' /bp-core/css/admin-bar.dev.css';60 $stylesheet = BP_PLUGIN_URL . 'bp-core/css/admin-bar.dev.css'; 61 61 else 62 $stylesheet = BP_PLUGIN_URL . ' /bp-core/css/admin-bar.css';62 $stylesheet = BP_PLUGIN_URL . 'bp-core/css/admin-bar.css'; 63 63 64 64 wp_enqueue_style( 'bp-admin-bar', apply_filters( 'bp_core_admin_bar_css', $stylesheet ), array( 'admin-bar' ), $version ); … … 68 68 69 69 if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) 70 $stylesheet = BP_PLUGIN_URL . ' /bp-core/css/admin-bar-rtl.dev.css';70 $stylesheet = BP_PLUGIN_URL . 'bp-core/css/admin-bar-rtl.dev.css'; 71 71 else 72 $stylesheet = BP_PLUGIN_URL . ' /bp-core/css/admin-bar-rtl.css';72 $stylesheet = BP_PLUGIN_URL . 'bp-core/css/admin-bar-rtl.css'; 73 73 74 74 wp_enqueue_style( 'bp-admin-bar-rtl', apply_filters( 'bp_core_admin_bar_rtl_css', $stylesheet ), array( 'bp-admin-bar' ), $version );
Note: See TracChangeset
for help on using the changeset viewer.