diff options
author | Chris Rosser <chris@bluefuton.com> | 2011-11-21 18:56:13 +0100 |
---|---|---|
committer | Chris Rosser <chris@bluefuton.com> | 2011-11-21 18:56:13 +0100 |
commit | 0ec05c1e582805d9b71f06e357846abeaf0e40a4 (patch) | |
tree | 9e30eb2befc6afce4728dbb0cc5c00bbc8c86e22 | |
parent | eb3ed335e38ee51aaf3783b108ffeb3dda61b0a7 (diff) |
Added HTTP status code 422 (Unprocessable Entity) to set_status_header()
-rw-r--r-- | system/core/Common.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/core/Common.php b/system/core/Common.php index e43bb8db3..b0921fe0c 100644 --- a/system/core/Common.php +++ b/system/core/Common.php @@ -419,6 +419,7 @@ if ( ! function_exists('set_status_header')) 415 => 'Unsupported Media Type', 416 => 'Requested Range Not Satisfiable', 417 => 'Expectation Failed', + 422 => 'Unprocessable Entity', 500 => 'Internal Server Error', 501 => 'Not Implemented', |