mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 23:42:11 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
e440985fb9
|
@ -407,8 +407,17 @@ class HTTP_WebDAV_Server_SeedDMS extends HTTP_WebDAV_Server
|
|||
$path .= $pathseg->getName().'/';
|
||||
// $info["path"] = htmlspecialchars($path.rawurlencode($obj->getName()));
|
||||
if($this->useorgfilename) {
|
||||
/* Add the document id and version to the display name.
|
||||
* I doesn't harm because for
|
||||
* accessing the document the full path is used by the browser
|
||||
*/
|
||||
if($this->prefixorgfilename) {
|
||||
$info["path"] = $path.$obj->getID()."-".$content->getVersion()."-".$content->getOriginalFileName();
|
||||
$info["props"][] = $obj->getID()."-".$content->getVersion()."-".$content->getOriginalFileName();
|
||||
} else {
|
||||
$info["path"] = $path.$content->getOriginalFileName();
|
||||
$info["props"][] = $this->mkprop("displayname", $content->getOriginalFileName());
|
||||
}
|
||||
} else {
|
||||
$info["path"] = $path.$obj->getName();
|
||||
$info["props"][] = $this->mkprop("displayname", $obj->getName());
|
||||
|
|
Loading…
Reference in New Issue
Block a user