Fix the case-sensitivity of some HTTP class usage.

See #33413.


git-svn-id: https://develop.svn.wordpress.org/trunk@34123 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor
2015-09-14 17:36:37 +00:00
parent 811e538325
commit 2c91a4d1e0
5 changed files with 26 additions and 22 deletions
+1 -1
View File
@@ -3997,7 +3997,7 @@ function _links_add_base( $m ) {
return $m[1] . '=' . $m[2] .
( preg_match( '#^(\w{1,20}):#', $m[3], $protocol ) && in_array( $protocol[1], wp_allowed_protocols() ) ?
$m[3] :
WP_HTTP::make_absolute_url( $m[3], $_links_add_base )
WP_Http::make_absolute_url( $m[3], $_links_add_base )
)
. $m[2];
}