Make WordPress Core


Ignore:
Timestamp:
07/19/2019 04:31:40 AM (5 years ago)
Author:
pento
Message:

Coding Standards: Move wp-includes/class-oembed.php to wp-includes/class-wp-oembed.php.

This renames the file containing the WP_oEmbed class to conform to the coding standards.

This commit also includes:

  • A new class-oembed.php that includes the new file, for anyone that may've been including the file directly.
  • Replaces references to the old filename with the new filename.

See #47632.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-settings.php

    r45611 r45663  
    210210require( ABSPATH . WPINC . '/embed.php' );
    211211require( ABSPATH . WPINC . '/class-wp-embed.php' );
    212 require( ABSPATH . WPINC . '/class-oembed.php' );
     212require( ABSPATH . WPINC . '/class-wp-oembed.php' );
    213213require( ABSPATH . WPINC . '/class-wp-oembed-controller.php' );
    214214require( ABSPATH . WPINC . '/media.php' );
Note: See TracChangeset for help on using the changeset viewer.