diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-03-18 19:34:49 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-03-18 19:34:49 +0100 |
commit | fe8002a7db0ccfec3a96def4f889c265b52ace53 (patch) | |
tree | d8b3057501700323433c87b28571ac559ee846fa /lib/private | |
parent | bd57fcb539bedb4bd7d8823c65e4b68138b615b0 (diff) | |
parent | f2f7f178a5dcf3c5cfbc7509692d47cca4a658f3 (diff) | |
download | nextcloud-server-fe8002a7db0ccfec3a96def4f889c265b52ace53.tar.gz nextcloud-server-fe8002a7db0ccfec3a96def4f889c265b52ace53.zip |
Merge pull request #14995 from owncloud/remove-unrequired-backtick-removal
Remove unrequired backtick removal
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/files/cache/cache.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/private/files/cache/cache.php b/lib/private/files/cache/cache.php index 64661ca1157..670ac2ec524 100644 --- a/lib/private/files/cache/cache.php +++ b/lib/private/files/cache/cache.php @@ -245,9 +245,6 @@ class Cache { $queryParts[] = '`storage`'; $params[] = $this->getNumericStorageId(); - $params = array_map(function($item) { - return trim($item, "`"); - }, $params); $queryParts = array_map(function($item) { return trim($item, "`"); }, $queryParts); |