summaryrefslogtreecommitdiffstats
path: root/lib/filesystem.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-07-21 01:18:51 +0200
committerBart Visscher <bartv@thisnet.nl>2012-07-21 01:18:51 +0200
commit5381cc74188961899c3797c7d1634122bc8d0979 (patch)
treef779ef0c74b106b1d945d4eac64403147ab22f15 /lib/filesystem.php
parentad12e13f1473dfdf963bb69a196de5aa16e7ebe8 (diff)
downloadnextcloud-server-5381cc74188961899c3797c7d1634122bc8d0979.tar.gz
nextcloud-server-5381cc74188961899c3797c7d1634122bc8d0979.zip
Fix missing parameter decleration, thanks Jenkins :-)
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 7402d2cc25b..ec30ffb8f4c 100644
--- a/lib/filesystem.php
+++ b/lib/filesystem.php
@@ -473,7 +473,7 @@ class OC_Filesystem{
return self::$defaultInstance->hasUpdated($path,$time);
}
- static public function removeETagHook() {
+ static public function removeETagHook($params) {
$path=$params['path'];
OC_Connector_Sabre_Node::removeETagPropertyForFile($path);
}