diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2016-05-17 09:03:57 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2016-05-17 09:03:57 +0200 |
commit | 5e03e9a843aeccfb66e9f4156afa4bae89065fa3 (patch) | |
tree | 5c8ebc6e81fdbe6bddb1b78ea328f1b9a55bffe2 /lib/public | |
parent | 86d3dcd7e84919f1e7842f027aeabba05d73b670 (diff) | |
parent | f81b57bc451d50555a2ed198127e6031f66c7031 (diff) | |
download | nextcloud-server-5e03e9a843aeccfb66e9f4156afa4bae89065fa3.tar.gz nextcloud-server-5e03e9a843aeccfb66e9f4156afa4bae89065fa3.zip |
Merge pull request #24083 from owncloud/fix-race-condition
Read only once
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/icache.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/public/icache.php b/lib/public/icache.php index 3319013ddfa..a1ce068d819 100644 --- a/lib/public/icache.php +++ b/lib/public/icache.php @@ -60,6 +60,7 @@ interface ICache { * @param string $key * @return bool * @since 6.0.0 + * @deprecated 9.1.0 Directly read from GET to prevent race conditions */ public function hasKey($key); |