aboutsummaryrefslogtreecommitdiffstats
path: root/inc/HTTP
diff options
context:
space:
mode:
authorThibaut GRIDEL <tgridel@free.fr>2010-05-20 00:41:25 +0200
committerThibaut GRIDEL <tgridel@free.fr>2010-05-20 00:41:25 +0200
commit65ce4873278105eb4c1fec3f05422bfd37f41572 (patch)
tree440b924173c585bb99ef51165e47c55d3049b69c /inc/HTTP
parentb2fa63bdcca800d4cc66000d43694578942943af (diff)
downloadnextcloud-server-65ce4873278105eb4c1fec3f05422bfd37f41572.tar.gz
nextcloud-server-65ce4873278105eb4c1fec3f05422bfd37f41572.zip
webdav: fix getDir file attributes
Diffstat (limited to 'inc/HTTP')
-rwxr-xr-xinc/HTTP/WebDAV/Server/Filesystem.php4
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>");
}
}