diff --git a/plugins/cache/panels_hash_cache.inc b/plugins/cache/panels_hash_cache.inc
index e5f3c63..9131037 100644
--- a/plugins/cache/panels_hash_cache.inc
+++ b/plugins/cache/panels_hash_cache.inc
@@ -38,7 +38,7 @@ function panels_hash_cache_get_cache($conf, $display, $args, $contexts, $pane =
   
   $cid = panels_hash_cache_get_id($conf, $display, $args, $contexts, $pane);
   
-  $cache = cache_get($cid, 'cache');
+  $cache = cache_get($cid, 'panels_hash_cache');
   if (!$cache) {
     return FALSE;
   }
@@ -60,7 +60,7 @@ function panels_hash_cache_get_cache($conf, $display, $args, $contexts, $pane =
 function panels_hash_cache_set_cache($conf, $content, $display, $args, $contexts, $pane = NULL) {
   if (!empty($content)) {
     $cid = panels_hash_cache_get_id($conf, $display, $args, $contexts, $pane);
-    cache_set($cid, $content);
+    cache_set($cid, $content, 'panels_hash_cache');
   }
 }
 
@@ -78,7 +78,7 @@ function panels_hash_cache_clear_cache($display) {
   }
   $cid .= ':' . $display->did;
 
-  cache_clear_all($cid, 'cache', TRUE);
+  cache_clear_all($cid, 'panels_hash_cache', TRUE);
 }
 
 /**
