diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2012-12-18 15:55:42 -0500 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2012-12-18 15:55:42 -0500 |
commit | 2b08c9d03b803c8227a99a4c3fce3ecb84ed6fc4 (patch) | |
tree | e22771dd91ef304562f79e6bc010c82d6946eb9e /engine/classes/ElggStaticVariableCache.php | |
parent | b691e4e2c002ef83c0c2e2bbd74885d4828b5c67 (diff) | |
download | elgg-2b08c9d03b803c8227a99a4c3fce3ecb84ed6fc4.tar.gz elgg-2b08c9d03b803c8227a99a4c3fce3ecb84ed6fc4.tar.bz2 |
Fixes #3940. Cleaned up caching for access functions. Access caches are now cleared on ignore access change.
Diffstat (limited to 'engine/classes/ElggStaticVariableCache.php')
-rw-r--r-- | engine/classes/ElggStaticVariableCache.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/classes/ElggStaticVariableCache.php b/engine/classes/ElggStaticVariableCache.php index 787d35a32..17d849400 100644 --- a/engine/classes/ElggStaticVariableCache.php +++ b/engine/classes/ElggStaticVariableCache.php @@ -21,8 +21,8 @@ class ElggStaticVariableCache extends ElggSharedMemoryCache { * This function creates a variable cache in a static variable in * memory, optionally with a given namespace (to avoid overlap). * - * @param string $namespace The namespace for this cache to write to - * note, namespaces of the same name are shared! + * @param string $namespace The namespace for this cache to write to. + * @note namespaces of the same name are shared! */ function __construct($namespace = 'default') { $this->setNamespace($namespace); |