summaryrefslogtreecommitdiff
path: root/modules/block/block.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/block/block.module')
-rw-r--r--modules/block/block.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/block/block.module b/modules/block/block.module
index 2a7914157..282eaafe7 100644
--- a/modules/block/block.module
+++ b/modules/block/block.module
@@ -825,7 +825,7 @@ function _block_get_cache_id($block) {
// Start with common sub-patterns: block identification, theme, language.
$cid_parts[] = $block->module;
$cid_parts[] = $block->delta;
- $cid_parts = array_merge($cid_parts, drupal_render_cid_parts($block->cache));
+ $cid_parts += drupal_render_cid_parts($block->cache);
return implode(':', $cid_parts);
}