Making WordPress.org

Changeset 3988


Ignore:
Timestamp:
09/07/2016 02:22:07 PM (10 years ago)
Author:
jmdodd
Message:

Support Forums: Load support compat file to apply filters.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-plugin.php

    r3913 r3988  
    4141        $blog_id = get_current_blog_id();
    4242        if ( $blog_id && defined( 'WPORG_SUPPORT_FORUMS_BLOGID' ) && WPORG_SUPPORT_FORUMS_BLOGID == $blog_id ) {
    43             $this->dropin  = new Dropin;
    44             $this->themes  = new Theme_Directory_Compat;
    45             $this->plugins = new Plugin_Directory_Compat;
     43            $this->dropin          = new Dropin;
     44            $this->support_compat  = new Support_Compat;
     45
     46            // Ratings_Compat is loaded by Theme_Directory_Compat or
     47            // Plugin_Directory_Compat depending on the request.
     48            $this->themes          = new Theme_Directory_Compat;
     49            $this->plugins         = new Plugin_Directory_Compat;
    4650        }
    4751    }
Note: See TracChangeset for help on using the changeset viewer.