You are here

function media_browser_plus_download_action_cleanup in Media Browser Plus 7.3

Delete temporary download archive.

1 string reference to 'media_browser_plus_download_action_cleanup'
media_browser_plus_download_multiple_files in ./media_browser_plus.module
Download multiple files.

File

./media_browser_plus.module, line 286
Media Browser Plus - enhanced file management functions.

Code

function media_browser_plus_download_action_cleanup() {
  $file =& drupal_static('media_browser_plus_download_action', array());
  if (!empty($file)) {
    drupal_unlink($file);
  }
}