summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-12-22 00:32:22 -0800
committerwebchick <webchick@24967.no-reply.drupal.org>2011-12-22 00:32:22 -0800
commit24c357b5c521ade1d9002c43167695d3f769b8fa (patch)
tree81c0ce2228d69e90488067d2e30d7997a7713f2b
parent7fc6b1e6390cf420190923e3af660721cfb65eb0 (diff)
downloadbrdo-24c357b5c521ade1d9002c43167695d3f769b8fa.tar.gz
brdo-24c357b5c521ade1d9002c43167695d3f769b8fa.tar.bz2
Issue #1371484 by makara: Fixed Private properties in abstract class DrupalCacheArray.
-rw-r--r--includes/bootstrap.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 3b00624b5..7165958f3 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -289,12 +289,12 @@ abstract class DrupalCacheArray implements ArrayAccess {
/**
* A cid to pass to cache_set() and cache_get().
*/
- private $cid;
+ protected $cid;
/**
* A bin to pass to cache_set() and cache_get().
*/
- private $bin;
+ protected $bin;
/**
* An array of keys to add to the cache at the end of the request.