function media_oembed_update_7001 in oEmbed 7
Same name and namespace in other branches
- 7.0 deprecated/media_oembed/media_oembed.install \media_oembed_update_7001()
Clear style and preset caches.
File
- modules/
media_oembed/ media_oembed.install, line 21 - Install, update and uninstall functions for the Media: oEmbed module.
Code
function media_oembed_update_7001() {
// We don't do this if we're using version 1 of Styles.
if (function_exists('styles_style_flush')) {
styles_style_flush();
}
return array();
}