Make WordPress Core

Ticket #13955: 13955.patch

File 13955.patch, 775 bytes (added by hakre, 15 years ago)

Missing Status Codes / 306 is not a HTTP status code.

  • wp-includes/functions.php

     
    15341534                        205 => 'Reset Content',
    15351535                        206 => 'Partial Content',
    15361536                        207 => 'Multi-Status',
     1537                        208 =>  'Already Reported',
    15371538                        226 => 'IM Used',
    15381539
    15391540                        300 => 'Multiple Choices',
     
    15421543                        303 => 'See Other',
    15431544                        304 => 'Not Modified',
    15441545                        305 => 'Use Proxy',
    1545                         306 => 'Reserved',
    15461546                        307 => 'Temporary Redirect',
    15471547
    15481548                        400 => 'Bad Request',
     
    15761576                        505 => 'HTTP Version Not Supported',
    15771577                        506 => 'Variant Also Negotiates',
    15781578                        507 => 'Insufficient Storage',
     1579                        508 => 'Loop Detected',
    15791580                        510 => 'Not Extended'
    15801581                );
    15811582        }