diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-06-12 23:01:52 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-06-12 23:01:52 +0200 |
commit | 54f9477f34cbf2b51d2f0c316334660f64829ca0 (patch) | |
tree | 638c9efbb587106a717c56f58fe0889f917a815f /lib/files | |
parent | 6d55a062be5fd018b60a349cbeec82b574ecb38d (diff) | |
download | nextcloud-server-54f9477f34cbf2b51d2f0c316334660f64829ca0.tar.gz nextcloud-server-54f9477f34cbf2b51d2f0c316334660f64829ca0.zip |
fix another double wrapped array
Diffstat (limited to 'lib/files')
-rw-r--r-- | lib/files/cache/cache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index eced674b4cc..3818fdbd840 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -238,7 +238,7 @@ class Cache { $params[] = $id; $sql = 'UPDATE `*PREFIX*filecache` SET ' . implode(' = ?, ', $queryParts) . '=? WHERE `fileid` = ?'; - \OC_DB::executeAudited($sql,array($params)); + \OC_DB::executeAudited($sql, $params); } /** |