mirror of
https://github.com/kd2org/picodav.git
synced 2024-11-16 08:38:27 +01:00
Fix #1 wrong class name
FossilOrigin-Name: a14ccc8d943a761cfa33796446fbd5a2bc93068f4b3ac7986a8f61b3f9c28b04
This commit is contained in:
parent
a8df502510
commit
1f278f1520
2 changed files with 5 additions and 5 deletions
|
@ -1544,7 +1544,7 @@ namespace PicoDAV
|
|||
}
|
||||
|
||||
if (null === $properties) {
|
||||
$properties = WebDAV::BASIC_PROPERTIES;
|
||||
$properties = Server::BASIC_PROPERTIES;
|
||||
}
|
||||
|
||||
$out = [];
|
||||
|
@ -1586,7 +1586,7 @@ namespace PicoDAV
|
|||
$size = 0;
|
||||
$quota = disk_free_space($this->path);
|
||||
|
||||
$tmp_file = '.tmp.' . sha1($target);
|
||||
$tmp_file = $this->path . '.tmp.' . sha1($target);
|
||||
$out = fopen($tmp_file, 'w');
|
||||
|
||||
while (!feof($pointer)) {
|
||||
|
@ -1863,11 +1863,11 @@ RewriteRule ^.*$ /index.php [END]
|
|||
$fp = fopen(__FILE__, 'r');
|
||||
|
||||
if ($relative_uri == '.webdav/webdav.js') {
|
||||
fseek($fp, 50022, SEEK_SET);
|
||||
fseek($fp, 50036, SEEK_SET);
|
||||
echo fread($fp, 27769);
|
||||
}
|
||||
else {
|
||||
fseek($fp, 50022 + 27769, SEEK_SET);
|
||||
fseek($fp, 50036 + 27769, SEEK_SET);
|
||||
echo fread($fp, 7004);
|
||||
}
|
||||
|
||||
|
|
|
@ -268,7 +268,7 @@ namespace PicoDAV
|
|||
}
|
||||
|
||||
if (null === $properties) {
|
||||
$properties = WebDAV::BASIC_PROPERTIES;
|
||||
$properties = Server::BASIC_PROPERTIES;
|
||||
}
|
||||
|
||||
$out = [];
|
||||
|
|
Loading…
Reference in a new issue