function gallery_assist_invalidate_cache in Gallery Assist 6
Invalidate the gallery_assist cache, forcing a rebuild on the next grab of table data.
File
- ./
gallery_assist.module, line 5332 - Drupal content type with gallery functionality.
Code
function gallery_assist_invalidate_cache($cid = "*", $table = 'cache_gallery_assist_data', $wildcard = FALSE) {
cache_clear_all($cid, $table, $wildcard);
}