Skip to content
Snippets Groups Projects
Commit 39c4a7a5 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #1275684 by catch: image module creates a cache bin then never uses it.

parent 4d30df83
No related branches found
No related tags found
No related merge requests found
......@@ -28,9 +28,6 @@ function image_uninstall() {
function image_schema() {
$schema = array();
$schema['cache_image'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_image']['description'] = 'Cache table used to store information about image manipulations that are in-progress.';
$schema['image_styles'] = array(
'description' => 'Stores configuration options for image styles.',
'fields' => array(
......
......@@ -258,13 +258,6 @@ function image_system_file_system_settings_submit($form, &$form_state) {
}
}
/**
* Implements hook_flush_caches().
*/
function image_flush_caches() {
return array('image');
}
/**
* Implements hook_file_download().
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment