Actions
Fehler #333
openwebdav display UPPER/CASE/FULL/PATH with some webdav client
eXtplorer Version:
2.1.4
Joomla! Version:
none
Description
Hello,
when accessing to extplorer by webdav the files and directory are displayed in upper case and with the full path.
it happen only with some linux client :
- nemo ( cinnamon desktop )
- thunar ( xfce desktop )
it does not happen with cadaver CLI tools, nor with windows explorer
( i haven't tested unity/ubuntu nor gnome/nautilus )
i guess this behavior shows because theses tools are displaying the displayname property
instead of the path .
however, it seems quite easy to fix :
in libraries/HTTP/WebDAV/Server/Filesystem.php
replace ( line 215 )
$info["props"][] = $this->mkprop("displayname", strtoupper($path));
by
$info["props"][] = $this->mkprop("displayname", basename($path));
and folders and files are properly displayed.
i have tested ok with :
- windows explorer
- thunar
- nemo
- cadaver
- macOS finder
Best regards
Updated by Sören Eberhardt-Biermann almost 8 years ago
- Status changed from Neu to Gelöst
- Target version set to 2.1.10
thanks for the fix! will be fixed in the next release.
Actions