| 1 | Index: wp-includes/functions.php |
|---|
| 2 | =================================================================== |
|---|
| 3 | --- wp-includes/functions.php (revision 19601) |
|---|
| 4 | +++ wp-includes/functions.php (working copy) |
|---|
| 5 | @@ -1591,6 +1591,8 @@ |
|---|
| 6 | 100 => 'Continue', |
|---|
| 7 | 101 => 'Switching Protocols', |
|---|
| 8 | 102 => 'Processing', |
|---|
| 9 | + 103 => 'Checkpoint', |
|---|
| 10 | + 122 => 'Request-URI too long', |
|---|
| 11 | |
|---|
| 12 | 200 => 'OK', |
|---|
| 13 | 201 => 'Created', |
|---|
| 14 | @@ -1600,6 +1602,7 @@ |
|---|
| 15 | 205 => 'Reset Content', |
|---|
| 16 | 206 => 'Partial Content', |
|---|
| 17 | 207 => 'Multi-Status', |
|---|
| 18 | + 208 => 'Already Reported', |
|---|
| 19 | 226 => 'IM Used', |
|---|
| 20 | |
|---|
| 21 | 300 => 'Multiple Choices', |
|---|
| 22 | @@ -1610,6 +1613,7 @@ |
|---|
| 23 | 305 => 'Use Proxy', |
|---|
| 24 | 306 => 'Reserved', |
|---|
| 25 | 307 => 'Temporary Redirect', |
|---|
| 26 | + 308 => 'Resume Incomplete', |
|---|
| 27 | |
|---|
| 28 | 400 => 'Bad Request', |
|---|
| 29 | 401 => 'Unauthorized', |
|---|
| 30 | @@ -1629,10 +1633,19 @@ |
|---|
| 31 | 415 => 'Unsupported Media Type', |
|---|
| 32 | 416 => 'Requested Range Not Satisfiable', |
|---|
| 33 | 417 => 'Expectation Failed', |
|---|
| 34 | + 418 => 'I\'m a teapot', |
|---|
| 35 | 422 => 'Unprocessable Entity', |
|---|
| 36 | 423 => 'Locked', |
|---|
| 37 | 424 => 'Failed Dependency', |
|---|
| 38 | + 425 => 'Unordered Collection', |
|---|
| 39 | 426 => 'Upgrade Required', |
|---|
| 40 | + 428 => 'Precondition Required', |
|---|
| 41 | + 429 => 'Too Many Requests', |
|---|
| 42 | + 431 => 'Request Header Fields Too Large', |
|---|
| 43 | + 444 => 'No Response', |
|---|
| 44 | + 449 => 'Retry With', |
|---|
| 45 | + 450 => 'Blocked by Windows Parental Controls', |
|---|
| 46 | + 499 => 'Client Closed Request', |
|---|
| 47 | |
|---|
| 48 | 500 => 'Internal Server Error', |
|---|
| 49 | 501 => 'Not Implemented', |
|---|
| 50 | @@ -1642,7 +1655,10 @@ |
|---|
| 51 | 505 => 'HTTP Version Not Supported', |
|---|
| 52 | 506 => 'Variant Also Negotiates', |
|---|
| 53 | 507 => 'Insufficient Storage', |
|---|
| 54 | - 510 => 'Not Extended' |
|---|
| 55 | + 508 => 'Loop Detected', |
|---|
| 56 | + 509 => 'Bandwidth Limit Exceeded', |
|---|
| 57 | + 510 => 'Not Extended', |
|---|
| 58 | + 511 => 'Network Authentication Required' |
|---|
| 59 | ); |
|---|
| 60 | } |
|---|
| 61 | |
|---|