Make WordPress Core

Changeset 10740


Ignore:
Timestamp:
03/07/2009 09:05:54 PM (17 years ago)
Author:
azaozz
Message:

Updated List of HTTP status codes, props Askapache, fixes #9297

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r10730 r10740  
    13831383                        100 => 'Continue',
    13841384                        101 => 'Switching Protocols',
     1385                        102 => 'Processing',
    13851386
    13861387                        200 => 'OK',
     
    13911392                        205 => 'Reset Content',
    13921393                        206 => 'Partial Content',
     1394                        207 => 'Multi-Status',
     1395                        226 => 'IM Used',
    13931396
    13941397                        300 => 'Multiple Choices',
     
    13981401                        304 => 'Not Modified',
    13991402                        305 => 'Use Proxy',
     1403                        306 => 'Reserved',
    14001404                        307 => 'Temporary Redirect',
    14011405
    14021406                        400 => 'Bad Request',
    14031407                        401 => 'Unauthorized',
     1408                        402 => 'Payment Required',
    14041409                        403 => 'Forbidden',
    14051410                        404 => 'Not Found',
     
    14171422                        416 => 'Requested Range Not Satisfiable',
    14181423                        417 => 'Expectation Failed',
     1424                        422 => 'Unprocessable Entity',
     1425                        423 => 'Locked',
     1426                        424 => 'Failed Dependency',
     1427                        426 => 'Upgrade Required',
    14191428
    14201429                        500 => 'Internal Server Error',
     
    14231432                        503 => 'Service Unavailable',
    14241433                        504 => 'Gateway Timeout',
    1425                         505 => 'HTTP Version Not Supported'
     1434                        505 => 'HTTP Version Not Supported',
     1435                        506 => 'Variant Also Negotiates',
     1436                        507 => 'Insufficient Storage',
     1437                        510 => 'Not Extended'
    14261438                );
    14271439        }
Note: See TracChangeset for help on using the changeset viewer.