Make WordPress Core


Ignore:
Timestamp:
07/06/2016 12:39:01 PM (8 years ago)
Author:
SergeyBiryukov
Message:

Docs: Use 3-digit, x.x.x-style semantic versioning for _doing_it_wrong(), _deprecated_function(), _deprecated_argument(), and _deprecated_file() throughout core.

Props metodiew.
Fixes #36495.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/theme-install.php

    r35958 r37985  
    3030 */
    3131function install_themes_feature_list() {
    32     _deprecated_function( __FUNCTION__, '3.1', 'get_theme_feature_list()' );
     32    _deprecated_function( __FUNCTION__, '3.1.0', 'get_theme_feature_list()' );
    3333
    3434    if ( !$cache = get_transient( 'wporg_theme_feature_list' ) )
     
    161161 */
    162162function display_theme( $theme ) {
    163     _deprecated_function( __FUNCTION__, '3.4' );
     163    _deprecated_function( __FUNCTION__, '3.4.0' );
    164164    global $wp_list_table;
    165165    if ( ! isset( $wp_list_table ) ) {
Note: See TracChangeset for help on using the changeset viewer.