# Memcache_admin - http://drupal.org/node/1909398 - Excluding data from memcache statistics on pages with headers : json, image, application, csv, x-comma-separated-values.
--- memcache_admin.module	2013-02-05 12:43:26.901466861 +0100
+++ memcache_admin_new.module	2013-02-05 12:43:20.157466864 +0100
@@ -529,8 +529,11 @@
   // Try not to break non-HTML pages.
   if (function_exists('drupal_get_headers')) {
     $headers = drupal_get_headers();
-    if(strstr($headers, 'xml') || strstr($headers, 'javascript') || strstr($headers, 'plain')) {
-      return;
+    $formats = array('xml', 'javascript', 'json', 'plain', 'image', 'application', 'csv', 'x-comma-separated-values');
+    foreach ($formats as $format) {
+      if (strstr($headers, $format)) {
+        return;
+      }
     }
   }
 
