Skip to:
Content

BuddyPress.org

Changeset 9908


Ignore:
Timestamp:
06/02/2015 10:12:10 PM (10 years ago)
Author:
johnjamesjacoby
Message:

Theme Compat: Revert part of r9630.

Restores previous behavior of allowing buddypress.css to not be minified in the asset stack.

Fixes #6457. Props r-a-y.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/buddypress-functions.php

    r9883 r9908  
    394394                'dir'  => get_stylesheet_directory(),
    395395                'uri'  => get_stylesheet_directory_uri(),
    396                 'file' => $file,
     396                'file' => str_replace( '.min', '', $file ),
    397397            );
    398398        }
     
    401401            'dir'  => get_template_directory(),
    402402            'uri'  => get_template_directory_uri(),
    403             'file' => $file,
     403            'file' => str_replace( '.min', '', $file ),
    404404        );
    405405
Note: See TracChangeset for help on using the changeset viewer.