filter_formats_reset

7 filter.module filter_formats_reset()
8 filter.module filter_formats_reset()

Resets text format caches.

See also

filter_formats()

7 calls to filter_formats_reset()

File

modules/filter/filter.module, line 434
Framework for handling filtering of content.

Code

function filter_formats_reset() {
  cache_clear_all('filter_formats', 'cache', TRUE);
  cache_clear_all('filter_list_format', 'cache', TRUE);
  drupal_static_reset('filter_list_format');
  drupal_static_reset('filter_formats');
}
Login or register to post comments