#5888 closed defect (bug) (fixed)
buddypress.css being overridden after 2.1 update
| Reported by: | henry.wright | Owned by: | imath |
|---|---|---|---|
| Priority: | normal | Milestone: | 2.1.1 |
| Component: | Appearance - Template Pack | Version: | 2.1 |
| Severity: | normal | Keywords: | has-patch commit |
| Cc: | hugoashmore@… |
Description
There has been some reports in the forum of the 2.1 update overriding buddypress.css
See here for details:
http://buddypress.org/support/topic/my-customs-styles-stopped-work/
I'm unable to confirm because I'm away from my computer for a few days but thought it is worth highlighting the issue here.
Attachments (2)
Change History (12)
#1
@
12 years ago
- Component Core → Template Pack
- Keywords has-patch added
- Milestone Awaiting Review → 2.1.1
#5
@
12 years ago
There is a problem with the patch (5888.01)
The line:
$retval['location'] = trailingslashit( $location['uri'] ) . trailingslashit( $subdir ) . $file;
Should be:
$retval['location'] = trailingslashit( $location['uri'] ) . trailingslashit( $subdir ) . $location['file'];
#7
@
12 years ago
5888.02.patch is 5888.01.patch corrected according to shpitzyl comment. r-a-y do you confirm it's good to go ?
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
This is a side-effect of #5615 where we minified all our assets.
Attached patch changes the
locate_asset_in_stack()method in bp-legacy so it does not look for minifed assets in parent and child themes.