Return 423 instead of 503 for locked files

This commit is contained in:
Vincent Petry 2015-05-29 11:24:06 +02:00 committed by Robin Appelman
parent 0451a6652d
commit 270a10b754

View file

@ -42,6 +42,6 @@ class FileLocked extends \Sabre\DAV\Exception {
*/
public function getHTTPCode() {
return 503;
return 423;
}
}