From 424f8830ef8c9314c4326d5837181439e4a4e2e1 Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Sat, 9 Dec 2006 15:35:29 +1300 Subject: [PATCH] Add status 422. --- inc/CalDAVRequest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/inc/CalDAVRequest.php b/inc/CalDAVRequest.php index b39a262d..9c611e11 100644 --- a/inc/CalDAVRequest.php +++ b/inc/CalDAVRequest.php @@ -416,6 +416,7 @@ class CalDAVRequest case 415: $status_text = "Unsupported Media Type"; break; case 416: $status_text = "Requested Range Not Satisfiable"; break; case 417: $status_text = "Expectation Failed"; break; + case 422: $status_text = "Unprocessable Entity"; break; case 423: $status_text = "Locked"; break; case 424: $status_text = "Failed Dependency"; break; case 500: $status_text = "Internal Server Error"; break;