You are here

function media_download_post_update_invalidate_http_response_cache_tag in Media Download 1.1.x

Same name and namespace in other branches
  1. 1.2.x media_download.post_update.php \media_download_post_update_invalidate_http_response_cache_tag()

Invalidates the http_response cache tag.

File

./media_download.post_update.php, line 13
Contains post-update functions for media_download.

Code

function media_download_post_update_invalidate_http_response_cache_tag() {
  Cache::invalidateTags([
    'http_response',
  ]);
}