From 3f8677b24589e40793f27ca86e3976137e01d791 Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Sun, 9 Aug 2015 01:41:14 +0100
Subject: [PATCH] Issue #2544922 by borisson_: hook_views_post_render causes "A
 stray drupal_render() invocation" for anonymous users

---
 core/modules/views/views.api.php | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/core/modules/views/views.api.php b/core/modules/views/views.api.php
index 7c04ec793085..02910274cf15 100644
--- a/core/modules/views/views.api.php
+++ b/core/modules/views/views.api.php
@@ -6,7 +6,9 @@
  */
 
 use Drupal\Core\Language\LanguageInterface;
+use Drupal\views\Plugin\views\cache\CachePluginBase;
 use Drupal\views\Plugin\views\PluginBase;
+use Drupal\views\ViewExecutable;
 
 /**
  * @defgroup views_overview Views overview
@@ -796,12 +798,12 @@ function hook_views_pre_render(ViewExecutable $view) {
  *   The view object about to be processed.
  * @param string $output
  *   A flat string with the rendered output of the view.
- * @param CacheBackendInterface $cache
+ * @param \Drupal\views\Plugin\views\cache\CachePluginBase $cache
  *   The cache settings.
  *
  * @see \Drupal\views\ViewExecutable
  */
-function hook_views_post_render(ViewExecutable $view, &$output, CacheBackendInterface $cache) {
+function hook_views_post_render(ViewExecutable $view, &$output, CachePluginBase $cache) {
   // When using full pager, disable any time-based caching if there are fewer
   // than 10 results.
   if ($view->pager instanceof Drupal\views\Plugin\views\pager\Full && $cache instanceof Drupal\views\Plugin\views\cache\Time && count($view->result) < 10) {
-- 
GitLab