#680778 by hefox: Taxonomy synonyms not showing correctly in term list content type.
#617678: Improve 'back' button handling during adding a page in page manager.
#817810: Search menu retooling caused the title of search pages to get lost.
+#505132: Fix CSS caching to truly work on private filesystem now.
ctools 6.x-1.6 (2010-Jun-1)
==============
return $handler->edit_cache_set_key($item, $key);
}
}
+
+function ctools_file_download($filepath) {
+ if (strpos($filepath, 'ctools') === 0) {
+ $mime = file_get_mimetype($filepath);
+ // For safety's sake, we allow only text and images.
+ if (strpos($mime, 'text') === 0 || strpos($mime, 'image')) {
+ return array('Content-type:' . $mime);
+ }
+ }
+}
\ No newline at end of file