diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-07-21 01:18:51 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-07-21 01:18:51 +0200 |
commit | 5381cc74188961899c3797c7d1634122bc8d0979 (patch) | |
tree | f779ef0c74b106b1d945d4eac64403147ab22f15 /lib/filesystem.php | |
parent | ad12e13f1473dfdf963bb69a196de5aa16e7ebe8 (diff) | |
download | nextcloud-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.php | 2 |
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); } |