Make WordPress Core

Ticket #9297: functions.php.diff

File functions.php.diff, 1.5 KB (added by Askapache, 16 years ago)

functions.php.diff - update for $wp_header_to_desc

  • functions.php

     
    13821382                $wp_header_to_desc = array(
    13831383                        100 => 'Continue',
    13841384                        101 => 'Switching Protocols',
     1385                        102 => 'Processing',
    13851386
    13861387                        200 => 'OK',
    13871388                        201 => 'Created',
     
    13901391                        204 => 'No Content',
    13911392                        205 => 'Reset Content',
    13921393                        206 => 'Partial Content',
     1394                        207 => 'Multi-Status',
     1395                        226 => 'IM Used',
    13931396
    13941397                        300 => 'Multiple Choices',
    13951398                        301 => 'Moved Permanently',
     
    13971400                        303 => 'See Other',
    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',
    14061411                        405 => 'Method Not Allowed',
     
    14161421                        415 => 'Unsupported Media Type',
    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',
    14211430                        501 => 'Not Implemented',
    14221431                        502 => 'Bad Gateway',
    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        }
    14281440