From aed08a0f25e3df754f40383f5931ca7df1d7d434 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 20 Nov 2017 20:54:49 +0000 Subject: [PATCH] HTTP API: Add a `WP_Http` class constant for the HTTP status code `301`. Fixes #42490 Built from https://develop.svn.wordpress.org/trunk@42208 git-svn-id: http://core.svn.wordpress.org/trunk@42037 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-http.php | 1 + wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-http.php b/wp-includes/class-http.php index c802f7faef..abf14aa45c 100644 --- a/wp-includes/class-http.php +++ b/wp-includes/class-http.php @@ -31,6 +31,7 @@ class WP_Http { const HTTP_CONTINUE = 100; const SWITCHING_PROTOCOLS = 101; const PROCESSING = 102; + const EARLY_HINTS = 103; const OK = 200; const CREATED = 201; diff --git a/wp-includes/version.php b/wp-includes/version.php index 59d13357a2..ab75fbd103 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-42207'; +$wp_version = '5.0-alpha-42208'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.