Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
11/03/2011 07:31:04 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Do not load bp-default styles in admin area, ever. Add check to bp_dtheme_enqueue_styles().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/functions.php

    r5259 r5264  
    179179 */
    180180function bp_dtheme_enqueue_styles() {
     181
     182    // Bail if in admin
     183    if ( is_admin() )
     184        return;
     185
    181186    // Bump this when changes are made to bust cache
    182187    $version = '20110921';
Note: See TracChangeset for help on using the changeset viewer.