mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Merge pull request #1247 from DiegoMax/master
Added missing HTTP Status 505 to CakeResponse
This commit is contained in:
commit
509b2b1e44
1 changed files with 2 additions and 1 deletions
|
@ -74,7 +74,8 @@ class CakeResponse {
|
|||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Service Unavailable',
|
||||
504 => 'Gateway Time-out'
|
||||
504 => 'Gateway Time-out',
|
||||
505 => 'Unsupported Version'
|
||||
);
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue