diff --git a/src/wp-admin/includes/screen.php b/src/wp-admin/includes/screen.php
index 2ab5161..f12b951 100644
|
a
|
b
|
function add_screen_option( $option, $args = array() ) { |
| 129 | 129 | * |
| 130 | 130 | * @uses get_screen_icon() |
| 131 | 131 | * @since 2.7.0 |
| | 132 | * @deprecated 3.8.0 |
| 132 | 133 | * |
| 133 | 134 | * @param string|WP_Screen $screen Optional. Accepts a screen object (and defaults to the current screen object) |
| 134 | 135 | * which it uses to determine an icon HTML ID. Or, if a string is provided, it is used to form the icon HTML ID. |
| 135 | 136 | */ |
| 136 | 137 | function screen_icon( $screen = '' ) { |
| | 138 | _deprecated_function( __FUNCTION__, '3.8' ); |
| 137 | 139 | echo get_screen_icon( $screen ); |
| 138 | 140 | } |
| 139 | 141 | |
| … |
… |
function screen_icon( $screen = '' ) { |
| 141 | 143 | * Gets a screen icon. |
| 142 | 144 | * |
| 143 | 145 | * @since 3.2.0 |
| | 146 | * @deprecated 3.8.0 |
| 144 | 147 | * |
| 145 | 148 | * @global $post_ID |
| 146 | 149 | * @param string|WP_Screen $screen Optional. Accepts a screen object (and defaults to the current screen object) |
| … |
… |
function screen_icon( $screen = '' ) { |
| 148 | 151 | * @return string HTML for the screen icon. |
| 149 | 152 | */ |
| 150 | 153 | function get_screen_icon( $screen = '' ) { |
| | 154 | _deprecated_function( __FUNCTION__, '3.8' ); |
| 151 | 155 | if ( empty( $screen ) ) |
| 152 | 156 | $screen = get_current_screen(); |
| 153 | 157 | elseif ( is_string( $screen ) ) |