diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-12-30 21:23:17 -0500 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-12-30 21:23:17 -0500 |
commit | 96e08a1d962b42782d03721009970cbab352eec2 (patch) | |
tree | 23d0c537886669568e3092255317936c3db4814d /lib/files/cache/updater.php | |
parent | 77f12c526bf0010219e363844b588ffae27f1251 (diff) | |
download | nextcloud-server-96e08a1d962b42782d03721009970cbab352eec2.tar.gz nextcloud-server-96e08a1d962b42782d03721009970cbab352eec2.zip |
Fix function name
Diffstat (limited to 'lib/files/cache/updater.php')
-rw-r--r-- | lib/files/cache/updater.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/files/cache/updater.php b/lib/files/cache/updater.php index d57e4a1abe6..7fc9bd382fe 100644 --- a/lib/files/cache/updater.php +++ b/lib/files/cache/updater.php @@ -65,7 +65,7 @@ class Updater { $id = $cache->getId($internalPath); if ($id !== -1) { $cache->update($id, array('etag' => $storage->getETag($internalPath))); - self::updateFolderETags($parent); + self::eTagUpdate($parent); } } } |