summaryrefslogtreecommitdiffstats
path: root/lib/filesystem.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-07-25 23:07:10 +0200
committerBart Visscher <bartv@thisnet.nl>2012-07-25 23:09:03 +0200
commit381e493a8c777a4e5e95fd72c6a7ed8114c3c978 (patch)
treee6500675d75f9665e9cf24559b9998a9c0cf9b12 /lib/filesystem.php
parentf25ccaff59c135d7f1f22196bf266916ef131b35 (diff)
downloadnextcloud-server-381e493a8c777a4e5e95fd72c6a7ed8114c3c978.tar.gz
nextcloud-server-381e493a8c777a4e5e95fd72c6a7ed8114c3c978.zip
Rename functions
getETagPropertyForFile -> getETagPropertyForPath removeETagPropertyForFile -> removeETagPropertyForPath
Diffstat (limited to 'lib/filesystem.php')
-rw-r--r--lib/filesystem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filesystem.php b/lib/filesystem.php
index 81370d4e178..c87bc9ed9cb 100644
--- a/lib/filesystem.php
+++ b/lib/filesystem.php
@@ -475,7 +475,7 @@ class OC_Filesystem{
static public function removeETagHook($params) {
$path=$params['path'];
- OC_Connector_Sabre_Node::removeETagPropertyForFile($path);
+ OC_Connector_Sabre_Node::removeETagPropertyForPath($path);
}
}
OC_Hook::connect('OC_Filesystem','post_write', 'OC_Filesystem','removeETagHook');