Make WordPress Core


Ignore:
Timestamp:
01/16/2015 02:41:07 AM (12 years ago)
Author:
wonderboymusic
Message:

Make _wp_scripts_maybe_doing_it_wrong( $function ) "private".

Props obenland for the thought leadership.
See #20513.

File:
1 edited

Legend:

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

    r31194 r31196  
    5353        }
    5454
    55         wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
     55        _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
    5656
    5757        global $wp_styles;
     
    8282 */
    8383function wp_add_inline_style( $handle, $data ) {
    84         wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
     84        _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
    8585
    8686        if ( false !== stripos( $data, '</style>' ) ) {
     
    110110 */
    111111function wp_register_style( $handle, $src, $deps = array(), $ver = false, $media = 'all' ) {
    112         wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
     112        _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
    113113
    114114        wp_styles()->add( $handle, $src, $deps, $ver, $media );
     
    125125 */
    126126function wp_deregister_style( $handle ) {
    127         wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
     127        _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
    128128
    129129        wp_styles()->remove( $handle );
     
    152152function wp_enqueue_style( $handle, $src = false, $deps = array(), $ver = false, $media = 'all' ) {
    153153        global $wp_styles;
    154         wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
     154        _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
    155155
    156156        $wp_styles = wp_styles();
     
    173173 */
    174174function wp_dequeue_style( $handle ) {
    175         wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
     175        _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
    176176
    177177        wp_styles()->dequeue( $handle );
     
    191191 */
    192192function wp_style_is( $handle, $list = 'enqueued' ) {
    193         wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
     193        _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );
    194194
    195195        return (bool) wp_styles()->query( $handle, $list );
Note: See TracChangeset for help on using the changeset viewer.