Skip to:
Content

BuddyPress.org

Ticket #5888: 5888.02.patch

File 5888.02.patch, 1.9 KB (added by imath, 10 years ago)
  • src/bp-templates/bp-legacy/buddypress-functions.php

    diff --git src/bp-templates/bp-legacy/buddypress-functions.php src/bp-templates/bp-legacy/buddypress-functions.php
    index 326ef22..adeff87 100644
    class BP_Legacy extends BP_Theme_Compat { 
    308308                // No need to check child if template == stylesheet
    309309                if ( is_child_theme() ) {
    310310                        $locations['bp-child'] = array(
    311                                 'dir' => get_stylesheet_directory(),
    312                                 'uri' => get_stylesheet_directory_uri(),
     311                                'dir'  => get_stylesheet_directory(),
     312                                'uri'  => get_stylesheet_directory_uri(),
     313                                'file' => str_replace( '.min', '', $file )
    313314                        );
    314315                }
    315316
    316317                $locations['bp-parent'] = array(
    317                         'dir' => get_template_directory(),
    318                         'uri' => get_template_directory_uri(),
     318                        'dir'  => get_template_directory(),
     319                        'uri'  => get_template_directory_uri(),
     320                        'file' => str_replace( '.min', '', $file )
    319321                );
    320322
    321323                $locations['bp-legacy'] = array(
    322                         'dir' => bp_get_theme_compat_dir(),
    323                         'uri' => bp_get_theme_compat_url(),
     324                        'dir'  => bp_get_theme_compat_dir(),
     325                        'uri'  => bp_get_theme_compat_url(),
     326                        'file' => $file
    324327                );
    325328
    326329                // Subdirectories within the top-level $locations directories
    class BP_Legacy extends BP_Theme_Compat { 
    334337
    335338                foreach ( $locations as $location_type => $location ) {
    336339                        foreach ( $subdirs as $subdir ) {
    337                                 if ( file_exists( trailingslashit( $location['dir'] ) . trailingslashit( $subdir ) . $file ) ) {
    338                                         $retval['location'] = trailingslashit( $location['uri'] ) . trailingslashit( $subdir ) . $file;
     340                                if ( file_exists( trailingslashit( $location['dir'] ) . trailingslashit( $subdir ) . $location['file'] ) ) {
     341                                        $retval['location'] = trailingslashit( $location['uri'] ) . trailingslashit( $subdir ) . $location['file'];
    339342                                        $retval['handle']   = $location_type . '-' . $type;
    340343                                        break 2;
    341344                                }