summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-01-01 20:34:17 -0800
committerwebchick <webchick@24967.no-reply.drupal.org>2012-01-01 20:34:17 -0800
commit4155f1b144f42051d8a7c27785f1d767156023d9 (patch)
treeab2855d92f825d0d21a0360d9b613b616761a6be
parent009f260e8b99032a49012cb46c4305aa29d60576 (diff)
downloadbrdo-4155f1b144f42051d8a7c27785f1d767156023d9.tar.gz
brdo-4155f1b144f42051d8a7c27785f1d767156023d9.tar.bz2
Revert "Issue #1371484 by makara: Fixed Private properties in abstract class DrupalCacheArray."
This reverts commit 24c357b5c521ade1d9002c43167695d3f769b8fa.
-rw-r--r--includes/bootstrap.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index ca12b33dd..b51643b16 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().
*/
- protected $cid;
+ private $cid;
/**
* A bin to pass to cache_set() and cache_get().
*/
- protected $bin;
+ private $bin;
/**
* An array of keys to add to the cache at the end of the request.