File dav/method/UNLOCK.class.php

Last commit: Mon Nov 4 23:56:38 2019 +0100	Jan Dankert	Refactoring: Renaming WebDAV to DAV base class.
1 <?php 2 3 class DAV_UNLOCK extends DAV 4 { 5 6 7 /** 8 * Die Methode UNLOCK sollte garnicht aufgerufen werden, da wir nur 9 * Dav-Level 1 implementieren und dies dem Client auch mitteilen.<br> 10 * <br> 11 * Ausgabe von HTTP-Status 412 (Precondition failed) 12 */ 13 public function execute() 14 { 15 $this->httpStatus('412 Precondition failed'); 16 $this->davOPTIONS(); 17 } 18 }
Download dav/method/UNLOCK.class.php
History Mon, 4 Nov 2019 23:56:38 +0100 Jan Dankert Refactoring: Renaming WebDAV to DAV base class. Mon, 4 Nov 2019 23:54:13 +0100 Jan Dankert Refactoring: Splitting DAV methods into single files.