diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-07-25 23:07:10 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-07-25 23:09:03 +0200 |
commit | 381e493a8c777a4e5e95fd72c6a7ed8114c3c978 (patch) | |
tree | e6500675d75f9665e9cf24559b9998a9c0cf9b12 /lib/filesystem.php | |
parent | f25ccaff59c135d7f1f22196bf266916ef131b35 (diff) | |
download | nextcloud-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.php | 2 |
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'); |