Make WordPress Core


Ignore:
Timestamp:
04/28/2011 05:03:23 PM (14 years ago)
Author:
nacin
Message:

Remove default-embeds.php. fixes #17112.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r17748 r17751  
    31983198
    31993199/**
    3200  * Determines if default embed handlers should be loaded.
    3201  *
    3202  * Checks to make sure that the embeds library hasn't already been loaded. If
    3203  * it hasn't, then it will load the embeds library.
    3204  *
    3205  * @since 2.9.0
    3206  */
    3207 function wp_maybe_load_embeds() {
    3208     if ( ! apply_filters('load_default_embeds', true) )
    3209         return;
    3210     require_once( ABSPATH . WPINC . '/default-embeds.php' );
    3211 }
    3212 
    3213 /**
    32143200 * Determines if Widgets library should be loaded.
    32153201 *
Note: See TracChangeset for help on using the changeset viewer.