function ml_image_flush_caches in Media Library 6
Implementation of hook_flush_caches()
File
- ml_image/
ml_image.module, line 65 - Media Library Image module.
Code
function ml_image_flush_caches() {
// Wipe orphaned entries
db_query('DELETE FROM {ml_image_metadata} WHERE fid NOT IN (SELECT fid FROM {files})');
}