Roxen.git/
server/
modules/
filesystems/
filesystem.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2018-04-05
2018-04-05 13:05:03 by Henrik Grubbström (Grubba) <grubba@grubba.org>
1ebd81d540f7136b40b6620d8121f0eaec1cdc56 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
e2e76887e0e7f30881b82a3d553df57ce3e95f01
Filesystem
[WebDAV]
: Don't encode the paths to {,un}register_lock().
Potential fix for
[WS-246]
.
479:
"<h1>Permission to 'LOCK' files denied</h1>", id); }
-
register_lock(
encode_
path
(path)
, lock, id);
+
register_lock(path, lock, id);
return 0; }
494:
"<h1>Permission to 'UNLOCK' files denied</h1>", id); }
-
unregister_lock(
encode_
path
(path)
, lock, id);
+
unregister_lock(path, lock, id);
return 0; }