diff options
author | Thibaut GRIDEL <tgridel@free.fr> | 2010-05-20 00:41:25 +0200 |
---|---|---|
committer | Thibaut GRIDEL <tgridel@free.fr> | 2010-05-20 00:41:25 +0200 |
commit | 65ce4873278105eb4c1fec3f05422bfd37f41572 (patch) | |
tree | 440b924173c585bb99ef51165e47c55d3049b69c /inc/HTTP | |
parent | b2fa63bdcca800d4cc66000d43694578942943af (diff) | |
download | nextcloud-server-65ce4873278105eb4c1fec3f05422bfd37f41572.tar.gz nextcloud-server-65ce4873278105eb4c1fec3f05422bfd37f41572.zip |
webdav: fix getDir file attributes
Diffstat (limited to 'inc/HTTP')
-rwxr-xr-x | inc/HTTP/WebDAV/Server/Filesystem.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/HTTP/WebDAV/Server/Filesystem.php b/inc/HTTP/WebDAV/Server/Filesystem.php index 8e84288b3d0..1dc32a72126 100755 --- a/inc/HTTP/WebDAV/Server/Filesystem.php +++ b/inc/HTTP/WebDAV/Server/Filesystem.php @@ -290,8 +290,8 @@ $fullpath = $fspath."/".$filename; $name = htmlspecialchars($filename); printf($format, - number_format(filesize($fullpath)), - strftime("%Y-%m-%d %H:%M:%S", filemtime($fullpath)), + number_format(OC_FILESYSTEM::filesize($fullpath)), + strftime("%Y-%m-%d %H:%M:%S", OC_FILESYSTEM::filemtime($fullpath)), "<a href='$name'>$name</a>"); } } |