Make WordPress Core

Ticket #19596: 19601.diff

File 19601.diff, 1.7 KB (added by sirzooro, 13 years ago)
  • wp-includes/functions.php

     
    15911591                        100 => 'Continue',
    15921592                        101 => 'Switching Protocols',
    15931593                        102 => 'Processing',
     1594                        103 => 'Checkpoint',
     1595                        122 => 'Request-URI too long',
    15941596
    15951597                        200 => 'OK',
    15961598                        201 => 'Created',
     
    16001602                        205 => 'Reset Content',
    16011603                        206 => 'Partial Content',
    16021604                        207 => 'Multi-Status',
     1605                        208 => 'Already Reported',
    16031606                        226 => 'IM Used',
    16041607
    16051608                        300 => 'Multiple Choices',
     
    16101613                        305 => 'Use Proxy',
    16111614                        306 => 'Reserved',
    16121615                        307 => 'Temporary Redirect',
     1616                        308 => 'Resume Incomplete',
    16131617
    16141618                        400 => 'Bad Request',
    16151619                        401 => 'Unauthorized',
     
    16291633                        415 => 'Unsupported Media Type',
    16301634                        416 => 'Requested Range Not Satisfiable',
    16311635                        417 => 'Expectation Failed',
     1636                        418 => 'I\'m a teapot',
    16321637                        422 => 'Unprocessable Entity',
    16331638                        423 => 'Locked',
    16341639                        424 => 'Failed Dependency',
     1640                        425 => 'Unordered Collection',
    16351641                        426 => 'Upgrade Required',
     1642                        428 => 'Precondition Required',
     1643                        429 => 'Too Many Requests',
     1644                        431 => 'Request Header Fields Too Large',
     1645                        444 => 'No Response',
     1646                        449 => 'Retry With',
     1647                        450 => 'Blocked by Windows Parental Controls',
     1648                        499 => 'Client Closed Request',
    16361649
    16371650                        500 => 'Internal Server Error',
    16381651                        501 => 'Not Implemented',
     
    16421655                        505 => 'HTTP Version Not Supported',
    16431656                        506 => 'Variant Also Negotiates',
    16441657                        507 => 'Insufficient Storage',
    1645                         510 => 'Not Extended'
     1658                        508 => 'Loop Detected',
     1659                        509 => 'Bandwidth Limit Exceeded',
     1660                        510 => 'Not Extended',
     1661                        511 => 'Network Authentication Required'
    16461662                );
    16471663        }
    16481664