diff --git a/wp-includes/load.php b/wp-includes/load.php
index fe97810ae5..57a02ff59a 100644
a
|
b
|
function wp_check_php_mysql_versions() { |
156 | 156 | } |
157 | 157 | } |
158 | 158 | |
159 | | /** |
160 | | * Don't load all of WordPress when handling a favicon.ico request. |
161 | | * |
162 | | * Instead, send the headers for a zero-length favicon and bail. |
163 | | * |
164 | | * @since 3.0.0 |
165 | | */ |
166 | | function wp_favicon_request() { |
167 | | if ( '/favicon.ico' == $_SERVER['REQUEST_URI'] ) { |
168 | | header( 'Content-Type: image/vnd.microsoft.icon' ); |
169 | | exit; |
170 | | } |
171 | | } |
172 | | |
173 | 159 | /** |
174 | 160 | * Die with a maintenance message when conditions are met. |
175 | 161 | * |