Added HTTP Status 505 (Unsupported Version) to CakeResponse

This commit is contained in:
Diego Massanti 2013-04-25 17:59:28 -03:00
parent 5270721ade
commit a3d405524e

View file

@ -71,7 +71,8 @@ class CakeResponse {
501 => 'Not Implemented', 501 => 'Not Implemented',
502 => 'Bad Gateway', 502 => 'Bad Gateway',
503 => 'Service Unavailable', 503 => 'Service Unavailable',
504 => 'Gateway Time-out' 504 => 'Gateway Time-out',
505 => 'Unsupported Version'
); );
/** /**