From 073d932de05ef38fe88732cb61bd467f1e501542 Mon Sep 17 00:00:00 2001
From: aspilicious <aspilicious@172527.no-reply.drupal.org>
Date: Mon, 6 Aug 2012 15:38:18 +0200
Subject: [PATCH] Issue #1712456 by aspilicious: Convert old cache api in
 groupwise_maximum handler.

---
 handlers/views_handler_relationship_groupwise_max.inc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/handlers/views_handler_relationship_groupwise_max.inc b/handlers/views_handler_relationship_groupwise_max.inc
index a3e7f6b2e911..06dee325d7fe 100644
--- a/handlers/views_handler_relationship_groupwise_max.inc
+++ b/handlers/views_handler_relationship_groupwise_max.inc
@@ -169,7 +169,7 @@ function get_temporary_view() {
    */
   function options_form_submit(&$form, &$form_state) {
     $cid = 'views_relationship_groupwise_max:' . $this->view->name . ':' . $this->view->current_display . ':' . $this->options['id'];
-    cache_clear_all($cid, 'cache_views_data');
+    cache('views_data')->delete($cid);
   }
 
   /**
@@ -356,13 +356,13 @@ function query() {
     else {
       // Get the stored subquery SQL string.
       $cid = 'views_relationship_groupwise_max:' . $this->view->name . ':' . $this->view->current_display . ':' . $this->options['id'];
-      $cache = cache_get($cid, 'cache_views_data');
+      $cache = cache('views_data')->get($cid);
       if (isset($cache->data)) {
         $def['left_query'] = $cache->data;
       }
       else {
         $def['left_query'] = $this->left_query($this->options);
-        cache_set($cid, $def['left_query'], 'cache_views_data');
+        cache('views_data')->set($cid, $def['left_query']);
       }
     }
 
-- 
GitLab