diff --git a/core/modules/views/lib/Drupal/views/ViewsDataCache.php b/core/modules/views/lib/Drupal/views/ViewsDataCache.php index 9f9eff6..ccb69e4 100644 --- a/core/modules/views/lib/Drupal/views/ViewsDataCache.php +++ b/core/modules/views/lib/Drupal/views/ViewsDataCache.php @@ -261,7 +261,7 @@ public function destruct() { // Save data in seperate, per table cache entries. foreach ($this->requestedTables as $table) { $cid = $this->baseCid . ':' . $table; - $this->cacheBackend->set($this->prepareCid($cid), $this->storage); + $this->cacheBackend->set($this->prepareCid($cid), $this->storage[$table]); } } }